一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

jquery A连接转换文本连接

时间:2013-07-03 编辑:简简单单 来源:一聚教程网

 代码如下 复制代码

$(document).ready(function() {

 $("#content").each(function(){

  $(this).find('a').contents().unwrap(); //第一种方法
  $(this).text($(this).text()); //第二种方法
 });

})

热门栏目