私は自分のhtmlコントロールにhttp://uniformjs.comを使用しています。 これを適用するには、次のコードを使用します。このjQueryコントロールバインディングをどのように破棄できますか?
$("select").uniform();
このコントロールバインディングをどのように破棄できますか?
私は$("select").uniform('destroy');
が他のjQueryプラグインと同じように期待していました。
私は自分のhtmlコントロールにhttp://uniformjs.comを使用しています。 これを適用するには、次のコードを使用します。このjQueryコントロールバインディングをどのように破棄できますか?
$("select").uniform();
このコントロールバインディングをどのように破棄できますか?
私は$("select").uniform('destroy');
が他のjQueryプラグインと同じように期待していました。
When cloning, it was imperative that $.uniform.restore('select'); was included, but
var cloneCntr = 1; // Global unique counter
//var gid = '';
$('#cloneButton1').click(function() {
cloneCntr++; // Increment counter
var $clonedDiv = $(".ivsites:last").clone(true);
$("*", $clonedDiv).add($clonedDiv).each(function() {
if (this.id) {
this.id = this.id.substring(0, this.id.length - 1) + cloneCntr;
}
if (this.name) {
this.name = this.name + cloneCntr;
}
});
$clonedDiv.appendTo('#navcontainer ul:last');
$.uniform.restore('select');
$("select").uniform();
});
これはあなたのために働くかどうかを確認してください:
$('select').replaceWith($('select').clone(false));
はこれを試してみてください:
$.uniform.restore('select');
これが私の作品:
匿名downvoteをオフセットdelete $.fn.pluginName;
+1 – wanovak