トグルイベントを使用します-トグルと混同しないでください-jQueryバージョンをEDGEに設定
明らかにトグルに戻るため、突然動作を停止し、トリガーとして必要なセルを削除しました。
非推奨タグなどを見つけることができません
http://api.jquery.com/category/deprecated/は 404 を返します
Migrateモジュールを追加すると、 jsFiddle が機能し、コンソールに警告が表示されます ( Frédéric Hamidi が投稿したhttps://github.com/jquery/jquery-migrate/blob/master/warnings.mdによって詳しく説明されています)。
Deprecate fn toggleとissue 24とTicket #11786が表示されますが、表示されると思われる場所には表示されません。
不足しているものと、その代替品とドキュメントはどこにありますか?
注: 非推奨の理由は理解していますが、非推奨の公式ドキュメントが見つかりません。
$('#tbl .xx').toggle(
function() {
$(this).siblings().each(function(){
var t = $(this).text();
$(this).html($('<input />',{'value' : t}));
});
},
function() {
$(this).siblings().each(function(){
var inp = $(this).find('input');
if (inp.length){
$(this).text(inp.val());
}
});
}
);
MIGRATE のコード:
jQuery.fn.toggle = function( fn, fn2 ) {
// Don't mess with animation or css toggles
if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
return oldToggle.apply( this, arguments );
}
migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
// Save reference to arguments for access in closure
var args = arguments,
guid = fn.guid || jQuery.guid++,
i = 0,
toggler = function( event ) {
// Figure out which function to execute
var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
// Make sure that clicks stop
event.preventDefault();
// and execute the function
return args[ lastToggle ].apply( this, arguments ) || false;
};
// link all the functions, so any of them can unbind this click handler
toggler.guid = guid;
while ( i < args.length ) {
args[ i++ ].guid = guid;
}
return this.click( toggler );
};
UPDATEコードをfn.togglerとして保持できるかどうかを尋ねたので、削除ではなく名前を変更します