我收到错误
Uncaught SyntaxError: Unexpected token ILLEGAL
在浏览器的控制台中
<button type="button" class="post-review" onclick="postReview(360_MAH_GE)">Post</button>
<script>(function() {with (this[2]) {with (this[1]) {with (this[0]) {return function(event) {postReview(360_MAH_GE)
};}}}})</script>
答案 0 :(得分:1)
问题在于360_MAH_GE
。在控制台中尝试使用简单的var 360_MAH_GE;
来查看相同的错误。
1)如果它应该是变量,则不能在变量名中使用数字。
2)如果它应该是某个值,您可以通过将其括在'360_MAH_GE'
或"360_MAH_GE"
等引号中将其变为字符串。