我不确定代码中出了什么问题。当有人在一个td上盘旋时,我正试图改变课程。
http://jsfiddle.net/leggosteveo/fxva0chn/
main = function () {
$('#navRow').children().hover(function () {
$(this).addClass('hovLink');
}, function () {
$(this).removeClass('hovLink');
});
};$(document).ready(main);
答案 0 :(得分:0)
.children
是一种方法,而不是属性:
$('#navRow').children().hover(function () {
答案 1 :(得分:0)
尝试使用css样式而不是jQuery,例如:
#navRow td {background:#fff;} /*default style*/
#navRow td:hover {background:#cdcdcd;} /*hover style*/