未捕获的引用错误:赋值中的左侧无效

发布于 2024-12-06 11:06:03 字数 658 浏览 0 评论 0原文

<script>
function urlencode(str) {
   return escape(str).replace('+', '%2B').replace('%20', '+').replace('*', '%2A').replace('/', '%2F').replace('@', '%40');
}
$('input#q').keyup(function(e) {
 if(e.keyCode == 13) {
  if($('input#q').val().length > 2) 
  { 
   $('input#q').val() = urlencode($('input#q').val());
   document.search_form.submit();
  }
 }
});
$('input#search').click(function() {
 if($('input#q').val().length > 2) 
 { 
  $('input#q').val() = urlencode($('input#q').val());
  document.search_form.submit();
 } 
});
</script>

当我单击搜索按钮时,出现以下错误:“未捕获的引用错误:分配中的左侧无效” 但代码实际上与我按“输入”时的代码相同。有人可以解释一下吗?

<script>
function urlencode(str) {
   return escape(str).replace('+', '%2B').replace('%20', '+').replace('*', '%2A').replace('/', '%2F').replace('@', '%40');
}
$('input#q').keyup(function(e) {
 if(e.keyCode == 13) {
  if($('input#q').val().length > 2) 
  { 
   $('input#q').val() = urlencode($('input#q').val());
   document.search_form.submit();
  }
 }
});
$('input#search').click(function() {
 if($('input#q').val().length > 2) 
 { 
  $('input#q').val() = urlencode($('input#q').val());
  document.search_form.submit();
 } 
});
</script>

when i click the search button i get the following error : "Uncaught ReferenceError: Invalid left-hand side in assignment"
But the code is actually the same as when i press "enter". Can someone explain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

趴在窗边数星星i 2024-12-13 11:06:03

您不能为函数的结果分配新值,

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

请使用此代替:

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

它也不适用于按键 - 也许页面只是在发生相同的 js 错误后提交。

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.

哀由 2024-12-13 11:06:03

为什么你要分配这样的函数的结果:

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

使用这个代替

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

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())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文