问问题
251 次
4 回答
7
你错过了$
以前("#theSelect")
$("#theSelect").change(function(){
于 2013-04-03T06:49:33.977 回答
2
$
丢失了,所以 jQuery 不会识别它。
更改如下
$("#theSelect").change(function(){
alert("a");
});
于 2013-04-03T06:50:01.000 回答
0
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<select onchange=categories(this);>
<option value="option1">Option1</option>
<option value="option2">Option2</option>
<option value="option3">Option3</option>
<option value="option4">Option4</option>
<option value="option5">Option5</option>
</select>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
function categories(el) {
var category = el.options[el.selectedIndex].value;
alert(category);
}
</script>
</body>
</html>
于 2013-04-03T07:08:08.233 回答
0
用这个
$(document).ready(function() {
$("select").change(function(){
alert("a");
});
});
于 2013-04-03T06:51:33.707 回答