我正在 Drupal 7 中编辑“Zen”主题。这就是问题所在:
(function ($, Drupal, window, document, undefined) {
alert("xuy");
$("#navigation ul.links li").hover(function() {
alert("xuy");
});
第一个警报运行良好,但悬停时没有警报。我在 CSS 中有这个类。甚至
$("a").hover(function() {
alert("xuy");
});
没用。