标题应该很好概括...
在这个小提琴中,当您按下“开关”文本时,jQuery 会创建一个重复的标题来代替原始标题。唯一的错误(目前)是输入字段向右移动。
我怎样才能阻止这个?
jQuery 代码供参考(堆栈溢出不喜欢没有代码):
function duplicate(){
var w = $('#old').find('tr:last').find('td').map(function(index){
return $(this).outerWidth();
}).get();
var newth = $('#oldHead').find('th').map(function(){
return $(this).text();
}).get();
for (var i = 0; i < newth.length; i++){
if (i<1){
$('<span>' + newth[i] + '</span>').appendTo('#new');
} else {
$('<span style="width:' + (w[i] - 20) + 'px">' + newth[i] + '</span>').appendTo('#new > #newfloat');
}
}
$('#oldHead').find('tr').remove();
$('#oldBody').find('tr:first').find('td').each(function(index){
$(this).css({'width': w[index] + 'px'});
});
}
$('#switch').click(function(){
duplicate();
});