ステータス:動作中
スムーズに実行 - クリックは機能します
Jクエリ
$("document").ready(function(){
$("#test").click(function(){
alert("abc");
});
});
CSS
.blue {
background-color:blue;
}
タグ本体
<body>
<div class="blue" id="test">Testing code</div>
</body>
ステータス:動作していません
ファイルとその中に div を追加することに成功しtest
ますが、クリックは機能しません
Jクエリ
$("document").ready(function(){
$.get("new.php", {
// this math avoids IE from crashing
nbRandom: Math.random()
},
function(data){
$("body").html(data);
});
$("#test").click(function(){
alert("abc");
});
});
CSS
.blue {
background-color:blue;
}
タグ本体
<body>
</body>
誰もそれを行う方法を知っていますか?