"> Detailed explanation of how javascript operates server control code examples-JS Tutorial-php.cn

Detailed explanation of how javascript operates server control code examples

伊谢尔伦
Release: 2017-07-24 10:24:31
Original
1402 people have browsed it

js select server control select and dropdownlist

1. js operation server control select

Copy after login
Copy after login
//js操作服务器控件dropdownlist  选项0 选项1   选项0 选项1 
Copy after login

JS code:

document.getElementById("ddlFolder").value="0";//0为你要选中的项的value
Copy after login

2 . Select an item based on the Text value setting

var DropDownListCurrencyNew = document.getElementById("ddlFolder"); for(i = 0; i < DropDownListCurrencyNew.options.length; i++) { if(DropDownListCurrencyNew.options[i].text == "选项0") { DropDownListCurrencyNew.options[i].selected = true; } }
Copy after login

js reads the value and text of the DropDownList selected item

Value:

var selValue = document.getElementById("DropDownList1").options[document.getElementById("DropDownList1").selectedIndex].value;
Copy after login

Text:

var selText = document.getElementById("DropDownList1").options[document.getElementById("DropDownList1").selectedIndex].text;
Copy after login


The above is the detailed content of Detailed explanation of how javascript operates server control code examples. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!