我有一组以span
元素为标题的复选框。span
选中复选框后,我希望 url 中的文本换行。但是,我确实有用于选择span
类名的代码。为了让我的代码正常工作,我的复选框 id 与我的span
. 如果我array
自己设置,这确实有效,但由于某种原因,当使用脚本创建数组时,我无法让数组工作。这是代码
HTML:
<div id="product_list" style="float:left; clear:right;">
<input type="checkbox" id="p01" name="system[]" value="p01" form="compare">
<span style="margin-left:20px;" class="p01">product one</span>
<br/>
<input type="checkbox" id="p02" name="system[]" value="p02" form="compare">
<span style="margin-left:20px;" class="p02">product two</span>
<br/>
<input type="checkbox" id="p04" name="system[]" value="p04" form="compare">
<span style="margin-left:20px;" class="p04">product three</span>
<br/>
<input type="checkbox" id="p05" name="system[]" value="p05" form="compare">
<span style="margin-left:20px;" class="p02">product four</span>
<br/>
</div>
查询:
var arr = [];
arr = $('#product_list span').not('.hidden').map(function(i,e) {
return $(e).attr('class');
}).get().join(', ');
alert(arr);
//arr = ["p01", "p02", "p03", "p04"]; works but not the above.
jQuery.each(arr , function(index, value){
$("#"+ value).click(function(){
// alert("clicked");
if ($(this).attr("checked") == "checked"){
$('.'+value).wrap('<a href="#" id="comparelink" target="_blank"></a>'); $('a').link('href', '#');
}
else {
$('.'+value).unwrap('a');
}
});
});