如何重寫這個插入HTML的Jquery:jQuery的幫助插入HTML
var element = findLastInput(this).clone();
element.insertAfter(findLastInput(this));
這是HTML
要與類button-row
後插入它最接近的DIV中。
我的HTML:
<div class="input numeric integer optional">
<label for="company_webserver" class="integer optional"> Webserver</label>
<input type="number" step="1" size="50" name="company[webserver]" id="company_webserver" class="numeric integer optional">
</div>
<div class="button-row" style="font-size: 11px; width: 110px; float: right; margin-top: -10px; margin-right: 16px;">
<button style="font-size: 11px;" type="button" class="add">Add info</button>
<button style="font-size: 11px;" type="button" class="remove">Remove</button>
</div>
'this'指的是什麼?什麼是「元素」? –
「最接近」是什麼意思? – sdleihssirhc
@Felix - 我更新了我的問題,並提供了更多非常需要的信息 –