我需要將元素的REL屬性附加到另一個元素的值。 我的HTML是:如何將文本附加到屬性值
<div class="chkbxs">
<input type="checkbox" for="" id="chkbx_1" rel="ABC" />
<input type="checkbox" for="" id="chkbx_2" rel="DEF" />
</<div>
<div class="txtinpts">
<input type="text" id="txt_1" value="" />
</div>
我的jQuery代碼:
$(function(){
$('.chkbxs input[type="checkbox"]:checked').each(function(){
var eachChkbxRel = $('.chkbxs input[type="checkbox"]:checked').attr('rel');
$('.txtinpts input[type="text"]').attr('value', eachChkbxRel);
});
});
我需要追加每個選中的複選框REL到文本輸入值。如果未選中複選框,請將其從VALUE中刪除! 我也需要用';'來分隔每個值。 我上面的代碼不起作用,因爲它只將最後一個REL複製到VALUE中,我不知道如何解決它。任何人都知道如何?由於
哇完美,正是我所期待的。非常感謝 –