Uncaught ReferenceError: Invalid left-hand side in assignment

梦想与她 提交于 2019-11-27 21:54:25

You can't assign a new value to the result of a function

$('input#q').val() = urlencode($('input#q').val());

Use this instead:

$('input#q').val(urlencode($('input#q').val()))

It wouldn't work with the keypress either - maybe the page is simply submitted after the same js error occurs.

Why are you assinging a result of a function like this:

$("input#q").val = urlencode($('input#q').val())

Use this instead

$("input").val(urlencode($('input#q').val())
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!