我有一段HTML的那個被一遍又一遍地重複使用jQuery(當用戶點擊「添加」,它創建另一個塊更換號碼:查找和使用Javascript
<p>
<label for="question[1][text]">Question: <span class="req">*</span></label>
<input name="question[1][text]" id="A_Question_1" value="" type="text" class="f_input" />
</p>
<p>
<label for="question[1][type]">Type: <span class="req">*</span></label>
<input name="question[1][type]" id="A_Type_1" type="text" class="f_input" />
</p>
我需要增加每個號碼1該塊的每次迭代,從而使下一個塊自動創建:
<p>
<label for="question[2][text]">Question: <span class="req">*</span></label>
<input name="question[2][text]" id="A_Question_1" value="" type="text" class="f_input" />
</p>
<p>
<label for="question[2][type]">Type: <span class="req">*</span></label>
<input name="question[2][type]" id="A_Type_1" type="text" class="f_input" />
</p>
我敢肯定,這很簡單,但我不跟Regexs等足夠的有經驗的工作如何去做。謝謝:)
你是否也想增加'id'屬性?例如。 'id =「A_Question_1」'到'id =「A_Question_2」'。 – 2011-02-28 23:27:33