我的问题很简单,但我尝试了不同的解决方法。我有以下代码。我正在创建新的<div>
并试图给它一个类名测试。所以当我<div>
用类测试点击这个时,我试图提高警惕......请帮助我,我迷路了......
$('.item').click(function(){
if(!isFullscreen){ // MAXIMIZATION
$boxes = $(this).css('width','100%');
$boxes.addClass("test");
//$boxes.id = "test";
$('#content').prepend( $boxes ).masonry( 'reload' );
}
});
$(".test").click(function(){
alert("Test");
});
我什至尝试了下面的代码:但它们没有用
//$boxes.className="test";
//jQuery($boxes).attr("id","test");
提前致谢...