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>
が重複する可能性は、[の属性を削除しますhtmlタグ](http://stackoverflow.com/questions/3 909555/remove-attribute-of-html-tag) - 新しい質問をする前に検索を使用してください。 –
"jquery remove attribute"の最初のgoogleの結果は、 '.removeAttr()'のドキュメントに移動します。 –
ページが読み込まれたときにそれを削除したい場合は、離してみてください。 – 11684