我最近意识到我需要为首页添加 javascript 到我的 drupal 块模块。当我添加时,我发现出于某种原因:
drupal_add_js(drupal_get_path('module', 'slider') .'/slider.js');
在slider_block函数中“查看”的情况下,除了使用该模块的首页之外的所有网页,查看.js并运行它而不是加载普通页面。
slider.js 是:
Drupal.behaviors.slider = function(context) {
var x
x = 50;
document.write (x); //prints the value of x
}