出于某种原因,这不起作用,不胜感激。
<script>
$(document).ready(function(){
$('select[name=materialSelect]').change(function(){
alert("Changed");
});
});
</script>
<select name="materialSelect" id="materialSelect">
<option value="-1">-----Select Material-----</option>
<option value="0">Material</option>
</select>
最佳答案
您的代码没有任何问题,请小心将其称为
$('select[name=materialSelect]').change(function(){
alert("Changed");
});
之后,您的html被加载。
对于样本绑定,文档加载到调用您代码的函数。