Drupal7主题:初始化JQuery脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal7主题:初始化JQuery脚本相关的知识,希望对你有一定的参考价值。
Use this no-conflict wrapper instead of the default ready function in JQuery to initialize scripts in your Drupal 7 theme
(function ($) { Drupal.behaviors.YOURTHEMENAME = { attach: function(context, settings) { /*Add your js code here*/ } }; })(jQuery);
以上是关于Drupal7主题:初始化JQuery脚本的主要内容,如果未能解决你的问题,请参考以下文章