我有一个要隐藏的 div .. 然后加载包含一个按钮的 html .. 然后再次显示它 - 并让按钮成为 jquery ui 按钮。
$("#InfoBox").hide("slide", {
direction: "right"
}, 1000, function () {
$("#InfoBox").html($("#InfoBoxClone").html());
});
$("#butEditor").button();
$("#InfoBox").show("slide", {
direction: "left"
}, 1000);
当它显示时,它肯定看起来像一个 jquery ui 按钮 - 但它的行为不像一个。
不容易解释,所以我做了一个 jsfiddle 来展示它的基本原理。
http://jsfiddle.net/Upland/JFUuH/6/
我哪里错了?