1、显示的html代码如下:
<table style="width: 300pxtext-align: center" border="1" cellpadding="5"><tr><th width="75"><strong>Name</strong></th><th colspan="2"><span style="font-weight: bold">Telephone</span></th></tr><tr><td>John</td><td><a href="tel:0123456785">0123 456 785</a></td><td><img src="images/check.gif" alt="checked" /></td></tr></table>
2、开始用js的正则表达式清除
stringWithHTML = stringWithHTML.replace(/<\/?[a-z][a-z0-9]*[^<>]*>/ig, "")
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html,编写问题基础代码。
2、在index.html中的<script>标签,输入js代码:
$('#test').html($('#test').html().replace('<span>', '').replace('</span>', ''))。
3、浏览器运行index.html页面,此时全部span被用jquery删除掉了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)