注意:这不是Uncaught SyntaxError: Unexpected token ILLEGAL
错误!
我有一些代码可以在有人选择时禁用邮资输入字段Collection Only
。
你可以看到它在这个小提琴上工作:http: //jsfiddle.net/sZrLh/
以下是网站上的 JavaScript,带有警报以查看正在发生的事情:
<script type="application/javascript">
$("#postage_dropdown").change(function(){
if($("#postage_dropdown").val() == "6"){
$("#postage").prop('disabled', true);
alert("1");
}else{
$("#postage").prop('disabled', false);
alert("2");
}
alert("3");
});
alert("4");
</script>
不,当把它放到我的网站上时,它似乎不起作用。看这里:https ://secure1918.hostgator.com/~innoedge/sell.php
为什么它不起作用?我没有收到任何错误,使用jQuery 1.8.2
. 所有其他错误都是 Facebook 和烦人的广告。