如何在按钮单击时使用jquery获取所有可编辑字段值

时间:2010-06-18 20:20:32

标签: jquery

如果我更改Fieldset中的任何字段,我需要捕获更改的下拉列表的值,我的字段集中有一些下拉列表框?

我可以这样做吗?

感谢

2 个答案:

答案 0 :(得分:1)

jquery选择器应该看起来像这样

$("fieldset#idOfSpecificFieldSet select")

然后您可以迭代每个选择元素,如此

$("fieldset#idOfSpecificFieldSet select").each(function() {
   alert($(this).val());  //iterate though select elements and alert the value
});

关于附加按钮点击,你可以做这样的事情

$(document).ready(function () {

  $(buttonselector).click(function() {
    $("fieldset#idOfSpecificFieldSet select").each(function() {
       alert($(this).val());  //iterate though select elements and alert the value
    });
  })

});

答案 1 :(得分:1)

尝试类似这样的行......

$('select').change(
   function(){
     $(this).val()
    }
);

您可以更改选择器以匹配字段集下的所有选择...