追加为空错误?

时间:2012-03-01 19:41:27

标签: jquery

编辑:我不再收到任何错误,但执行此代码:

$("#button-container").append(".tbox");

仅在打开模式时创建的按钮旁边放置“.tbox”文本。它不会附加到模态。

Here is the demo page

单击“打开模式”链接,会创建一个按钮。我试图将它附加到模态而没有运气。知道为什么吗?

1 个答案:

答案 0 :(得分:2)

new FastButton(document.getElementById("tclose"), funclose);

似乎页面中没有“tclose”id元素。运行脚本时,页面中没有“tclose”按钮。

正如@Chimoo所说,你应该使用:

$("#button-container").append($(".tbox"));

这应该附加你的元素。