文件名称:基于Jquery的将DropDownlist的选中值赋给label的实现代码
文件大小:19KB
文件格式:PDF
更新时间:2023-12-31 17:15:34
ab IS lab
jquery代码 代码如下: $(function() { $(“#DropDownList1”).bind(“change”, function() { $(“#Label1”).text($(“#DropDownList1 option:selected”).text()); }); 或者 代码如下: $(“#DropDownList1”).bind(“change”, function() { $(“#Label1”).text($(“#DropDownList1”).val()); }); 其中对这个解释下: var name = $(“#DropDownList1 optio