Jquery选择器

发布于 2024-10-02 01:36:16 字数 356 浏览 4 评论 0原文

我被一个无法解决的问题困在这里。 我想用 jquery 更改输入字段的值。 我不明白为什么它不起作用。

<script>
$.noConflict();

jQuery(document).ready(function(){
        theimg = "[name=img\\[1\\]\\[mark\\]]";

        jQuery(theimg).attr("value", '1');    
});
</script>

<input type="text" name="img[1][mark]" value="0" />

淡入淡出有效,但我无法让输入字段更改其值。

I'm stuck here with a problem that I can't figure out.
I want to change the value of an input field with jquery.
I don't understand why it's not working.

<script>
$.noConflict();

jQuery(document).ready(function(){
        theimg = "[name=img\\[1\\]\\[mark\\]]";

        jQuery(theimg).attr("value", '1');    
});
</script>

<input type="text" name="img[1][mark]" value="0" />

The fade works, but I cannot get the input fields to change their value.

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

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

发布评论

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

评论(1

梦幻的心爱 2024-10-09 01:36:16

使用 $.val() 代替。

$(theimg).val(1);

还可以尝试以下方法来选择图像:

theimg = "input[name=\"img[2][mark]\"]";

Use $.val() instead.

$(theimg).val(1);

Also try this for selecting the image:

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