jquery代碼
代碼如下:
$(function() {
$("#DropDownList1").bind("change", function() {
$("#Label1").text($("#DropDownList1 option:selected").text());
});
或者
代碼如下:
$("#DropDownList1").bind("change", function() {
$("#Label1").text($("#DropDownList1").val());
});
其中對這個解釋下:
var name = $("#DropDownList1 option:selected").val(); //獲取dropdownlist 裡面選中的值
var name1 = $("#DropDownList1").text(); //獲取dropdownlist 裡面所用的值