Drupal 6 - 将 Javascript 添加到视图
我想将 Jquery 插件添加到视图中。但是,我不想通过 .info 文件添加,因为我不想在每个页面上都添加它。我也不想将其添加到视图的标题或创建 view.tpl.php 文件。
此页面展示了如何通过模板将Java脚本添加到节点.php。无论如何,是否可以通过 template.php 文件执行类似将 Java 脚本添加到视图的操作?
I want to add a Jquery plugin to a view. However, I don't want to add via the .info file, as I don't want it on every page. I also don't want to add it to the header of the view or create a view.tpl.php file.
This page shows how to add Java Script to a Node via template.php. Is there anyway to do something similar to add Java Script to a View via the template.php file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 Daniel Wehner 的回答的一个例子。它假设您的视图名为“blog”,并且您的显示 ID 为“page_1”。此代码进入 template.php。记住在向 template.php 添加新功能后清除模板缓存。
Here is an example for Daniel Wehner's answer. It assumes your view is called 'blog', and your display id is 'page_1'. This code goes into template.php. Remember to clear the template cache after adding new functions to template.php.
您可以使用钩子 hook_preprocess_views_view
You can use the hook hook_preprocess_views_view