ExtJs 模板内的 Javascript 未在 Safari 中执行

发布于 2024-10-10 07:35:45 字数 434 浏览 1 评论 0原文

我正在尝试执行一些动态附加到 DOM 中的简单 JavaScript。以下代码在 Mozilla Firefox 中有效,但在 Safari 中无效。

Ext.onReady(function () {

    var demoHtml = "<span>This is a test</span><script type='text/javascript'>alert('dynamic js works!')</script>";
    var demoTpl = Ext.DomHelper.createTemplate(demoHtml);
    demoTpl.compile();
    demoTpl.append('divRightPane');

});

关于如何解决这个问题有什么想法吗?

谢谢

I am trying to execute some simple javascript that is appended dynamically into the DOM. The following code works in Mozilla Firefox but not in Safari.

Ext.onReady(function () {

    var demoHtml = "<span>This is a test</span><script type='text/javascript'>alert('dynamic js works!')</script>";
    var demoTpl = Ext.DomHelper.createTemplate(demoHtml);
    demoTpl.compile();
    demoTpl.append('divRightPane');

});

Any ideas on how to fix this?

Thanks

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

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

发布评论

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

评论(1

慕烟庭风 2024-10-17 07:35:45

I think that it's related to this question: Safari and Chrome doesn't evaluate dynamically added <script> tag at page load
I believe that ExtJS template uses DOM functions. In Safari (try Chrome) it will not work.
It seems that document.write should work with scripts, but it's not ExtJS template.
Why do you need to add to the DOM the script inline?
Couldn't you load the script dynamically with eval?

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