如何将元素属性值添加为选择器

时间:2016-09-10 09:42:29

标签: jquery

我试图将单击的元素属性值转换为变量,并且需要将其作为jquery id选择器。需要在旁边添加boxid值""用#表示特定的基于id的元素

$("[data-toggle=modalBx]").click(function(){

        var boxid = $(this).attr('data-target');
        alert(boxid);
        $("boxid value with hash here").show();             

    });

1 个答案:

答案 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();             

});