作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用这段代码:
var d = new dijit.Dialog({
title: "Programatic Dialog Creation",
style: "width: 300px",
});
var button1 = new dijit.form.Button({'label': 'one', 'onClick': function () {
alert('one')
}});
var button2 = new dijit.form.Button({'label': 'two', 'onClick': function () {
alert('two');
}});
d.attr("content", button1 + ' | ' + button2);
d.show();
预期结果:一个里面有两个按钮的对话框
实际结果:一个带有文本的对话框
[Widget dijit.form.Button, dijit_form_Button_4] | [Widget dijit.form.Button, dijit_form_Button_5]
我做错了什么?完成这项任务的正确方法是什么?我试过 dojo.place 和 dojo.query 但没有成功。
最佳答案
您正在混淆 Dijit 对象、DOM 节点和字符串。
将 Dijits 放入对话框或任何容器小部件的正确方法是:
dojo.place(button1.domNode, d.containerNode);
dojo.place(button2.domNode, d.containerNode);
d.show();
或者您可以在创建 Dijit 对象时调用 placeAt() 方法:
var button1 = new dijit.form.Button({'label': 'one', 'onClick': function () {
alert('one')
}}).placeAt(d.containerNode);
你得到了你的结果,因为基本上发生的是
d.attr("content", button1.toString() + '|' + button2.toString());
另请注意,可以通过这种方式插入字符串:
var button1Html = dojo.create("div").appendChild(button1.domNode).parentNode.innerHTML;
var button2Html = dojo.create("div").appendChild(button2.domNode).parentNode.innerHTML;
d.set("content", button1Html + "|" + button2Html);
但它不会起作用,因为它会创建未在 Dijit 对象(按钮)中引用的新 DOM 节点,因此您的事件不会触发。
关于javascript - Dojo 不能以编程方式连接 djits?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8454552/
使用这段代码: var d = new dijit.Dialog({ title: "Programatic Dialog Creation", style: "width: 300p
我是一名优秀的程序员,十分优秀!