代碼示例:jQuery的懸停事件不觸發如下
(function (window, document) {
$('.rating_title_container').parents('.item_row_def').hover(function() {
setTimeout(function() {
system.console('Worked');
}, 1000);
});
})(window, document);
我是相當新的JS,jQuery的。任何人都可以解釋我在這裏失蹤了嗎?在 發佈代碼http://jsfiddle.net/p7gBy/5/
HTML
<table>
<thead>
<tr>
<th class="item_row_def" onclick="sort(3);">
<table class="col-header">
<tbody>
<tr>
<td>
<h2 class="header_title rating_title_container">Rating</h2>
</td>
</tr>
</tbody>
</table>
</th>
</tr>
</thead>
</table>
此代碼運行時,馬上你叫吧,如果是在頭文件的剩餘部分還沒有準備好,所以也找不到任何元素 – dmi3y 2013-02-19 04:31:27
你可以把它放在一個小提琴? – arjuncc 2013-02-19 04:31:52
你可以發佈你的HTML嗎? – 2013-02-19 04:32:01