Sencha Touch:是否可以将脚本添加到模板中?

发布于 2024-12-11 17:46:46 字数 317 浏览 0 评论 0原文

有什么方法可以制作类似以下的东西吗?

var template=new Ext.XTemplate(
'<tpl for=".">',
'<div>'
            '<span>This is a Test number {id}</span>'
    '<script>doSomething()</script>',
'</div>',
'</tpl>');

通过这样做,我只收到带有脚本标签的 HTML,但它们不会被执行。有什么想法吗?

Is there any way to make something like the following?

var template=new Ext.XTemplate(
'<tpl for=".">',
'<div>'
            '<span>This is a Test number {id}</span>'
    '<script>doSomething()</script>',
'</div>',
'</tpl>');

By doing that, i just receive the HTML with the script tags, but they are not executed. Any idea?

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

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

发布评论

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

评论(1

琉璃繁缕 2024-12-18 17:46:46

如果你想在通过模板生成html的同时运行javascript代码,你可以执行以下操作:

var template=new Ext.XTemplate(
'<tpl for=".">',
'<div>'
    '<span>This is a Test number {id}</span>'
    '{[this.doSomething()]}',
'</div>',
'</tpl>',
{
   doSomething: function(){}
});

If you want to run javascript code while generating html by template, you can do the following:

var template=new Ext.XTemplate(
'<tpl for=".">',
'<div>'
    '<span>This is a Test number {id}</span>'
    '{[this.doSomething()]}',
'</div>',
'</tpl>',
{
   doSomething: function(){}
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文