Jquery选择器
我被一个无法解决的问题困在这里。 我想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 $.val() 代替。
还可以尝试以下方法来选择图像:
Use $.val() instead.
Also try this for selecting the image: