DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 基於Jquery的將DropDownlist的選中值賦給label的實現代碼
基於Jquery的將DropDownlist的選中值賦給label的實現代碼
編輯:JQuery特效代碼     
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 裡面所用的值
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved