"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」...)不起作用,但如果我改變鼠標懸停它的作品。 任何人都可以提供幫助嗎?jquery:鼠標懸停工作,但點擊不會'工作
感謝, 程
不錯!非常感謝! – cheng
是的,每當你移動或點擊導致按鈕一遍又一遍地被替換的鼠標時,mouseover事件被觸發。 –