0

I am trying to get the form id when an option in a drop down is selected:

HTML

<form id="test">
     <select id="option1">
      <option id="opt1">Hello</option>
     </select>
 </form>

JS:

$("#test").change(function(){

     var formid=$("test").parent("form");
     alert(formid);

});

警报中的输出是“对象对象”。我也尝试过最接近的,它给出了相同的输出。

4

1 回答 1

1
$("#test").change(function(){

     var formid=$("test").parent("form").attr('id');
     alert(formid);
});
于 2013-03-11T18:45:49.593 回答