"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Document</title>
<script src="jquery-1.6.2.js"></script>
<script>
$("#test").live("click", function(){
alert('');
});
$("#tbl").live("mouseover",function(){
$("#title").html('<input id="test" type="button" value="test button" />');
});
$("#tbl").live("mouseleave",function(){
$("#title").html('');
});
</script>
</head>
<body>
<table id='tbl' width="200" border="1">
<tr>
<td id="title"> </td>
</tr>
<tr>
<td id="content"> </td>
</tr>
</table>
</body>
</html>
$( "#test")live( "click" ...)は動作しませんが、mouseoverに変更すると動作します。 どれでもお手伝いできますか?jquery:mouseoverは動作しますが、動作しません。
おかげで、 チェン
nice !!どうもありがとう! – cheng
ボタンを何度も置き換えられたマウスを移動またはクリックするたびにmouseoverイベントが発生していました。 –