1
我在其ItemTemplate中有DropDownList項的GridView。如何使用JavaScript在GridView ItemTemplate中訪問DropDownList控件的選定值?
現在,我想使用JavaScript訪問GridView中每個DropDownList控件的SelectedValue。
我該怎麼做?
我在其ItemTemplate中有DropDownList項的GridView。如何使用JavaScript在GridView ItemTemplate中訪問DropDownList控件的選定值?
現在,我想使用JavaScript訪問GridView中每個DropDownList控件的SelectedValue。
我該怎麼做?
我只是猜測這是你問什麼?
可以伊斯利通過使用「這個」
function whatsBeenSelected(optionSelected){
var selectedValue = optionSelected.value; // give you access to what value has been selected
alert(optionSelected.value);
}
</script>
,並在選擇你的組合boxs通過參考添加事件處理程序與你的GridView生成的函數名的例子。
<select name="price" onchange="return whatsBeenSelected(this)">
<option value="Select Something">Select</option>
<option value="10">Price $10</option>
<option value="24">Price $24</option>
</select>
<select name="age" onchange="return whatsBeenSelected(this)">
<option value="No Colour selected">Select</option>
<option value="red">Color red</option>
<option value="blue">Price blue</option>
</select>
讓我知道這是我想你的意思
可以顯示瀏覽器的源代碼 – david
不,我沒有瀏覽器的源代碼。 –