我使用具有多個輸入字段的輸入形式。添加刪除鏈接/按鈕刪除輸入字段的內容?
這些輸入字段可以預先填充,所以我想給用戶提供了一個「刪除」鏈接或按鈕,刪除該輸入字段的全部內容字段旁邊,然後刪除的一個容易的選擇。
按下刪除鍵也會給他們,這已經被刪除的文本確認。
我重視的是什麼我想
我使用WordPress和重力形式我的表單生成器做一個JPEG。我想可能有一個jQuery解決方案來做到這一點,但不知道如何?
我的輸入字段之一的代碼如下,我的表單中的inout字段都是相同的代碼,但不同的id當然,所以我不想在這裏粘貼一切只是作爲一個exmpale。
<li id="field_15_144" class="gfield">
<label class="gfield_label" for="input_15_144">List</label>
<div class="ginput_container">
<input id="input_15_144" class="medium" type="text" tabindex="40" value="" name="input_144">
</div>
// this would be the link to delete the contents of input field "input_15_144
<a href="" class="deleteURL">Delete</a>
</li>
感謝您的幫助!
發佈您的代碼你已經嘗試到現在 – Techie
http://stackoverflow.com/a/5344752/976777 –
@Dasun - 是啊對不起,我忘了補充吧,現在做... – Redwall