jQuery:使用 select onchange 事件填充同级文本字段?

发布于 2024-09-06 08:21:55 字数 546 浏览 4 评论 0原文

<select onchange="$(self).siblings('input[type=text]').val( $(self).val() ); $(self).siblings('input[type=checkbox]').attr('checked','checked')">

在选择框之前不起作用

,有这些输入(示例):

<input type="text" value="" id="product[14][value]" name="product[14][value]">
<input type="checkbox" value="1" id="product[14][enabled]" name="product[14][enabled]">

在 firebug 中调试后,我发现它实际上是在查找同级,而失败的部分是用选择的值填充文本字段:

.val( $(self).val() ); 

什么有错吗? 谢谢!

<select onchange="$(self).siblings('input[type=text]').val( $(self).val() ); $(self).siblings('input[type=checkbox]').attr('checked','checked')">

that does not work

before the select box, there are these inputs (examples):

<input type="text" value="" id="product[14][value]" name="product[14][value]">
<input type="checkbox" value="1" id="product[14][enabled]" name="product[14][enabled]">

after debugging in firebug, i found that it is in fact finding the siblings, and the part that is failing is filling the text field with the select's value:

.val( $(self).val() ); 

what's wrong with it?
thanks!

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

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

发布评论

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

评论(1

香橙ぽ 2024-09-13 08:21:55

使用$(this),而不是$(self)self 指的是窗口属性 window.self (实际上是 window 对象。

Use $(this), not $(self). self refers to the window property window.self (which is in fact the window object.

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