解决方案(伪代码):(http://www.cnblogs.com/see7di/archive/2011/09/08/2239653.html
jQuery( “*”, obj).add([obj]).each(function(){
jQuery.event.remove(this);
jQuery.removeData(this);
});

obj.innerHTML = “”;

 

 

2  增加知识

http://www.cnblogs.com/Xdoable/archive/2011/09/06/2169103.html
 

---

 

 document.getElementById("rigthContainer").innerHTML = "";
 
$("#ID").html("");
$("#ID").empty();

$("#ID>*").remove(""); 

相关文章:

  • 2021-12-05
  • 2021-12-06
  • 2021-11-21
  • 2021-11-18
  • 2022-02-16
  • 2022-01-07
猜你喜欢
  • 2021-08-17
  • 2021-12-06
  • 2021-12-31
相关资源
相似解决方案