使用 jquery 将某些表单输入设置为某些值

发布于 2024-12-11 01:59:37 字数 492 浏览 0 评论 0原文

如何循环遍历具有特定名称的所有表单输入并将其设置为指定值?

我尝试了这个 jsfiddle 但无法让它工作。 http://jsfiddle.net/qvcA6/

$(document).ready(function() {
    $("#link-1").click(function() {

$('[name=price]','#myform').val('0.00');
      });  
});

编辑:我认为这并不重要,但是数组不考虑表单字段名称的键。因此,您的所有示例都有效,但是当我将键放入字段名称中时,它们就会中断。有人知道如何处理钥匙吗?更新了 jsfiddle -> http://jsfiddle.net/qvcA6/8/

How do i cycle through all form inputs with a certain name and set those to a specified value?

I tried this jsfiddle and i can't get it to work. http://jsfiddle.net/qvcA6/

$(document).ready(function() {
    $("#link-1").click(function() {

$('[name=price]','#myform').val('0.00');
      });  
});

EDIT: i didn't think it would matter, but the array key for the form field name isn't accounted for. So all of your examples are working but they break when i put keys in the field names. Anybody know how to go about accounting for the keys? updated jsfiddle -> http://jsfiddle.net/qvcA6/8/

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

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

发布评论

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

评论(4

晨曦÷微暖 2024-12-18 01:59:37

为您更新了 jfiddle http://jsfiddle.net/qvcA6/1/
有两个问题。

1) 属性值需要用引号引起来。

2)您输入的名称是“price[]”而不是“price”,因此jquery选择器不匹配任何内容

Updated the jfiddle for you http://jsfiddle.net/qvcA6/1/
There were two issues.

1) The attribute value needs to be surrounded by quotes.

2) The name of your inputs were 'price[]' and not 'price' so the jquery selector didn't match anything

旧情别恋 2024-12-18 01:59:37

这是一个 小提琴

$(document).ready(function() {
    $("#link-1").click(function(e) {
        $('#myform').find('input[name="price[]"]').val('0.00');
        e.preventDefault(); // use prevent default instead of inline js on the link. 
    }); 
});

Here's a fiddle

$(document).ready(function() {
    $("#link-1").click(function(e) {
        $('#myform').find('input[name="price[]"]').val('0.00');
        e.preventDefault(); // use prevent default instead of inline js on the link. 
    }); 
});
一口甜 2024-12-18 01:59:37

您的输入名称是 price[] 而不是 price,而且在使用属性 equals 选择器时指定标签名称会更有效,特别是在长格式中。

$('#myform input[name="price[]"]').val('0.00');

这是您修改后的小提琴的链接 http://jsfiddle.net/qvcA6/7/

The name of your inputs is price[] not price, also it would be more efficient expecially in a long form to specify the tag name when using the attribute equals selector.

$('#myform input[name="price[]"]').val('0.00');

Here is a link your modified fiddle http://jsfiddle.net/qvcA6/7/

中二柚 2024-12-18 01:59:37

请参阅我的 jsFiddle

$(function() {
    $("#link-1").click(function() {
        $("input[name^=price\\[]", "#myform").val('0.00');
        return false;
    });
});

See my jsFiddle:

$(function() {
    $("#link-1").click(function() {
        $("input[name^=price\\[]", "#myform").val('0.00');
        return false;
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文