-4

タイトルが示すように、別の div (「div.secondclass」) をクリックして動的 div のクラスを取得したいと考えています。これが私のコードです:

$(document).ready(function() {
    $("div.secondclass").click(function () {
        firstclass=$('#firstid').attr('class');
        alert("the class of the 1st div is ="+firstclass);
    });
});
4

1 に答える 1

0
$(document).ready(function() {
    $("div.secondclass").click(function () {
        var aClass = $('#firstid')[0]
                          .className
                          .replace(/[\n\t\r]/g, " ")
                          .replace(/^\s+|\s+$/g, "")
                          .split(" ");
        alert("The div with the id firstid has got these classes: " + aClass.join(", "));
    });
});
于 2012-04-20T18:30:35.870 に答える