作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将 Meteor 模板与 bootboxjs 库一起使用?
即,我有以下模板
test.html:
<template name="test">
<input type="text" name="testtext"/>
</template>
它有一些事件,
test.js:
Template.test.events({
'keyup input[name="testtext"]' : function () { console.log('key up in testtext'); }
});
如何使用模板生成带有事件的引导框模式?
最佳答案
您可以将 Blaze.toHTML(Template.your_dialog_template) 传递给 bootbox.dialog() 调用的“messages”属性,但事件不起作用。
因此,技巧可能是在对话框打开后使用 Blaze.render() 将模板注入(inject)到对话框中。
bootbox.dialog({
title: "Title",
message: '<span/>', // bootbox doesn't accept an empty value
buttons: {
success: {
label: "Save",
className: "btn-success",
callback: function () {
// do tomething
}
}
}
}
);
// Inject your template inside the dialog box
Blaze.render(Template.dialog_create_cluster, $('.bootbox-body')[0])
关于meteor - 如何将 meteor 模板与 Bootbox 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19646196/
我是一名优秀的程序员,十分优秀!