3.3.1 中包含 jquery ui 对话框

发布于 2024-12-28 19:31:04 字数 900 浏览 1 评论 0原文

我进入了 wordpress 3.3.1 文件夹,查看 jQuery-ui-dialog 是否以及具体发生了什么变化以将其排队。(我正在使用 admin_init,毕竟它位于管理区域中) 这样做的原因是我无法使用类名来设置对话框上的选项。 我发现 js 文件的名称与我找到的排队文档/帮助中使用的名称不同。 例如,它们现在(在 wordpress\wp-includes\js\jquery\ui" 目录中),全部以 .min 为后缀,例如 jquery.ui.core.min、jquery.ui.dialog.min 等。

那么问题,.. .这是否意味着排队中使用的名称应该相同?

例如 wp_enqueue_script('jquery-ui-dialog-min'); 之前在哪里 wp_enqueue_script('jquery-ui-dialog');

前一个文件夹(在 \js\jquery 中)“jquery.js”的名称仍然相同。

我怀疑排队会导致以下使用 .dialog 的函数失败(否则类名已更改?)

jQuery(document).ready(function(){
   jQuery("#dialog-form").dialog(
     {
         dialogClass   : 'wp-dialog',
         autoOpen: false,
         width: 400,
         resizable: false,
         modal: true,
         title: "One Popup"
     });

.dialog 类不响应/执行任何操作。 甚至尝试过 $Mydialog = ....在初始化后设置它的方法,但也没有运气

任何帮助将不胜感激,..许多天的挫折和尝试一切都没有成功。 谢谢 尼尔

I went into the wordpress 3.3.1 folders to see if and what had changed specifically re the jQuery-ui-dialog for enqueueing it.(I am using admin_init, after all it is in the admin area)
Reason for doing so was I could not use the class name to set the options on the dialog.
i found the js files were differently named from what is used in the enqueue docm / help I have found.
eg they are (in the wordpress\wp-includes\js\jquery\ui" directory) now, all postfixed with .min eg jquery.ui.core.min, jquery.ui.dialog.min etc.

Question then,...Does this mean the names used in enqueueing should be the same.?

eg wp_enqueue_script('jquery-ui-dialog-min');
where before it was
wp_enqueue_script('jquery-ui-dialog');

One folder back (in \js\jquery) the "jquery.js" is still named the same.

I suspect that the enqueueing results in the following function using .dialog to fail (else the class name has changed?)

jQuery(document).ready(function(){
   jQuery("#dialog-form").dialog(
     {
         dialogClass   : 'wp-dialog',
         autoOpen: false,
         width: 400,
         resizable: false,
         modal: true,
         title: "One Popup"
     });

The .dialog class does not respond / do anything.
Even tried the
$Mydialog = ....approach for setting it after init, but no luck there either

Any help would be greatly appreciated,..many days of frustration and trying everything has had no success.
Thx
Neal

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故笙诉离歌 2025-01-04 19:31:04

Codex 仍然将其列为 jquery-ui-dialog,所以我想这是正确的。

在将 jquery-ui-dialog 排入队列之前,是否还要将 jquery 和 jquery-ui-core 排入队列?

Codex still lists it as jquery-ui-dialog, so I guess thats correct.

Are you also enqueueing jquery and jquery-ui-core before you enqueue jquery-ui-dialog?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文