0

我正在 Drupal 7 中编辑“Zen”主题。这就是问题所在:

 (function ($, Drupal, window, document, undefined) {        
         alert("xuy");
         $("#navigation ul.links li").hover(function() {
         alert("xuy");
    });

第一个警报运行良好,但悬停时没有警报。我在 CSS 中有这个类。甚至

 $("a").hover(function() { 
          alert("xuy"); 
    });

没用。

4

2 回答 2

0

你应该确定 $ like

(function($) {
  Drupal.behaviors.mybehavior = {
    attach: function(context, settings){
       //you code goes here
       //$ will work inside this function
    }
  };
})(jQuery);
于 2013-01-25T17:07:39.870 回答
0

你的代码在我看来有点古怪。你不应该在 drupal 7 中使用 drupal 行为吗?(是的你应该)。

Drupal.behaviors.mybehavior = function(context, settings){
  $('#navigation ul.links li').hover(function() {
    alert('xuy');
  });
};
于 2013-01-25T13:12:44.503 回答