我的 mootools 代码在 joomla 1.5 中不起作用

发布于 2024-12-23 08:47:58 字数 393 浏览 1 评论 0原文

我的 mootools 代码无法正常工作,

var requestHTMLData = new Request.HTML ({
            url: 'index.php?option=com_abc$task=display&myvote='+votes+ '&id=' +id,
            update: $('contains' + id)
        }).send();

您好,我正在尝试通过 joomla 1.5 中的 mootools 1.12 将数据发送到此页面,

您能帮助我吗?

它给了我这个错误

Error: Request is not defined

my mootools code not work

var requestHTMLData = new Request.HTML ({
            url: 'index.php?option=com_abc$task=display&myvote='+votes+ '&id=' +id,
            update: $('contains' + id)
        }).send();

hi a am trying to sent data to this page by mootools 1.12 in joomla 1.5

can you help me ?

it give me this error

Error: Request is not defined

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

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

发布评论

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

评论(1

雨落星ぅ辰 2024-12-30 08:47:58

我认为这只能意味着 mootools 脚本没有被加载,或者您在加载脚本之前使用了此代码。

在 Firebug 中,在“网络”选项卡下检查 mootools.js 文件是否已正确加载。同样在 Firebug 的 Console 下,插入一些简单的测试代码,例如:

var test = new Request();
test;

您应该得到:

Object { $chain=[0], $events={...}, options={...}, more...}

I think that can only mean that either the mootools script is not being loaded or you are using this code BEFORE the script is loaded.

In Firebug, check under the Net tab that the mootools.js file is being loaded correctly. And also in Firebug, under Console, insert some simple testing code like:

var test = new Request();
test;

And you should get:

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