2012-05-06 18 views
1

ページの読み込み時にフォームのアクション属性アクションを削除するにはどうすればよいですか?フォームのアクション属性を削除する

私のフォームは、フォームを選択し、属性を削除するためにjQueryの.removeAttr()メソッドを使用することができます

<form action="process" class="TTWForm ui-sortable-disabled" method="post" 
     novalidate=""> 


      <div id="field2-container" class="field f_100 ui-resizable-disabled ui-state-disabled"> 
       <label for="field2"> 
        Comments 
       </label> 
       <textarea rows="5" cols="20" name="field2" id="field2" required="required"></textarea> 
      </div> 


      <div id="field3-container" class="field f_100 radio-group required ui-resizable-disabled ui-state-disabled"> 

       <label for="field3-1"> 
        Work 
       </label> 


       <div class="option clearfix"> 
        <input name="field3" id="field3-1" value="Needs Revisions" type="radio"> 
        <span class="option-title"> 
          Needs Revisions 
        </span> 
       </div> 


       <div class="option clearfix"> 

        <input name="field3" id="field3-2" value="Fine" type="radio"> 
        <span class="option-title"> 
          Fine 
        </span> 
       </div> 


       <div class="option clearfix"> 
        <input name="field3" id="field3-3" value="Unstable" type="radio"> 
        <span class="option-title"> 
          Unstable 
        </span> 

       </div> 
      </div> 


      <div id="form-submit" class="field f_100 clearfix submit"> 
       <input value="Submit" type="submit"> 
      </div> 
     </form> 
+1

が重複する可能性は、[の属性を削除しますhtmlタグ](http://stackoverflow.com/questions/3 909555/remove-attribute-of-html-tag) - 新しい質問をする前に検索を使用してください。 –

+0

"jquery remove attribute"の最初のgoogleの結果は、 '.removeAttr()'のドキュメントに移動します。 –

+0

ページが読み込まれたときにそれを削除したい場合は、離してみてください。 – 11684

答えて

6
$(function(){ 
    $('form.TTWForm.ui-sortable-disabled').attr('action', ''); 
}); 

または:

$(function(){ 
    $('form.TTWForm.ui-sortable-disabled').removeAttr('action'); 
}); 

あなたはそれを変更したい場合は、値のfooへ:の

$(function(){ 
    $('form.TTWForm.ui-sortable-disabled').attr('action', 'foo'); 
}); 
1

です。このような

何か:

// Wait for the document to be ready 
$(function(){ 
    // Remove the attribute from the form 
    $("form.TTWForm.ui-sortable-disabled").removeAttr("action"); 
}); 
関連する問題