它使用切换事件- 不要与切换混淆- jQuery 版本设置为EDGE
它突然停止工作并删除了我想要作为触发器的单元格,因为它显然恢复为toggle。
我找不到任何弃用标签等
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());
}
});
}
);
迁移中的代码:
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 );
};
更新我问他们是否可以将代码保留为 fn.toggler 所以它是重命名而不是删除