通过div id更改div中表单的操作

时间:2013-05-03 06:19:08

标签: javascript jquery forms

我必须在不使用jquery,javascript的表单id的情况下更改div中表单的操作,而是必须使用div id。 我厌倦了这段代码,但它没有用:

$("#popup form:action").attr('value','address here');

以下是表格

的div
<div id="popup">
    <form name="frm_categories" id="frm_categories" action="" method="post" enctype="multipart/form-data">
    <div class="attributes" id="new_attribute">
        //codes
    </div>
   </form>
</div>

任何人都可以帮助我....

1 个答案:

答案 0 :(得分:3)

你可以这样做:

$('#popup form').attr('action', 'address');