$("#id").val(3)
试试 先不要用 id$= 这种方法
而且这种方法 是比较低效率的
为Dropdowlist添加onchange()事件,然后取Dropdowlist选择的值赋给隐藏域。为
Dropdowlist添加onchange事件,在aspx.cs页的page_Load里加上下面代码:this.dropdownlist.Attributes["onchange"] = "dplchange()"
js代码:
function dplchange()
{
document.getElementById("aa").value=document.getElementById("dropdownlist").options[document.getElementById("dropdownlist").selectedIndex].text//取的是dropdownlist的文本,如果要取dropdownlist的value值,将text换成value即可。
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)