"-6ren"> "-我正在尝试集成 javascript library for drag&drop on tables进入我的自定义 Drupal 模块的一页。我已经使用 drupal_add_js 包含了 js 文件-6ren">
gpt4 book ai didi

Drupal 中的 Javascript ""

转载 作者:行者123 更新时间:2023-11-29 18:35:37 25 4
gpt4 key购买 nike

我正在尝试集成 javascript library for drag&drop on tables进入我的自定义 Drupal 模块的一页。我已经使用 drupal_add_js 包含了 js 文件,但我不知道如何初始化它。

该库的文档指出应该像这样调用 init 函数

<body onload="REDIPS.drag.init()">

我将如何在 Drupal 中做到这一点?或者 Drupal 是否有更好的初始化脚本的方法?

最佳答案

Drupal 对此有自己的机制,包括向 Drupal.behaviors 添加一个属性。查看此页面:http://drupal.org/node/205296

Drupal.behaviors.redipsDragBehavior = function() {
REDIPS.drag.init();
};

来自链接页面:

Any function defined as a property of Drupal.behaviors will get called when the DOM has loaded.

关于Drupal 中的 Javascript "<body onload=...>",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3567483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com