Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 JavaScript 文件附加到特定的块模块。我知道我需要添加 with drupal_add_js(),但我不确定在哪里放置此代码。
drupal_add_js()
如果有人可以显示带有简单函数的 JavaScript 文件的代码alert(),我将不胜感激。
alert()
将它添加到您的主题 pre_process 函数中,然后使用 Drupal add_js 和 get_path 方法将其指向正确的方向。
hook_preprocess_page(&$variables) { drupal_add_js(drupal_get_path('theme', 'THEME_NAME') .'/js/my_js_file.js'); ... }