我必须创建刷新(用所有 HTML 刷新整个聊天框)聊天框,并且在聊天框内,我有一个引导开关。这个开关也替换为我的代码。
更换整个元素后。自举开关停止工作。我决定删除所有按钮 HTML 并重新添加开关。(如果有开关刷新方法,最好在我的代码中添加)。
我试过这个,
jQuery('.bootstrap-switch-wrapper').remove();
似乎这对任何事情都没有影响。问题就在那里。对这些人有什么建议吗?
我正在调整聊天框的宽度。这就是我替换 HTML 的方式。
var short_col = "<div id='short_column' class='col-lg-7 col-sm-6 col-xs-12 box-column' style='margin-bottom: 80px;'>";
var long_col = "<div id='long_column' class='col-lg-12 col-sm-12 col-xs-12 box-column' style='margin-bottom: 80px;'>";
var div_close = "</div>";
var myContent = jQuery('.myContent').html();
if(showing_lbox){
// When showing another box in same row
jQuery('.box-column').replaceWith(short_col+myContent+div_close);
}else{
jQuery('.box-column').replaceWith(long_col+myContent+div_close);
}
}