嗨,我开始学习 jquery,我阅读了教程并构建了我的代码,但我想知道为什么这段代码在我的页面上不起作用:
<script src="jquery-1.9.1.js"></script>
<script src="jquery-ui.js"></script>
<script src="jquery-min.js"></script>
<script type="text/javascript">
$("#storage").change(function(){
alert("sample ng onchange");
});
</script>
<tr><td><s:text name="label.storageArea" /></td>
<td><s:select name="mediaBean.storageAreaDesc"
list="storageAreaList"
value="%{mediaBean.storageAreaDesc}"
size="1" style="width:155px;"
theme="simple" id="storage" />
</td>
</tr>
请帮忙。谢谢你。
这是生成的标签 HTML:
<select name="mediaBean.storageAreaDesc" size="1" id="storage" style="width:155px;">
<option value="1 - Storage 1" selected="selected">1 - Storage 1</option>
<option value="2 - Storage 2">2 - Storage 2</option>
<option value="3 - Storage 3">3 - Storage 3</option>
</select>