我试图将单击的元素属性值转换为变量,并且需要将其作为jquery id选择器。需要在旁边添加boxid值""用#表示特定的基于id的元素
$("[data-toggle=modalBx]").click(function(){
var boxid = $(this).attr('data-target');
alert(boxid);
$("boxid value with hash here").show();
});
答案 0 :(得分:2)
选项1(如果你在boxid中没有哈希):
$("[data-toggle=modalBx]").click(function(){
var boxid = $(this).attr('data-target');
$("#" + boxid).show();
});
选项2:
$("[data-toggle=modalBx]").click(function(){
var boxid = $(this).attr('data-target');
$(boxid).show();
});