注意:这不是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和恼人的广告。
答案 0 :(得分:0)
我也遇到了奇怪的错误......你尝试过使用
吗?$("#postage").attr('disabled', 'disabled');
和
$("#postage").attr('disabled', '');
? 可能值得一试 - 我发现有些似乎有效,有些则没有