


How to write regular rules to remove all
tags using Dreamweaver_html/css_WEB-ITnose
Jun 24, 2016 pm 12:13 PM
Just like the question
Reply to the discussion (solution)
Can anyone help?
It’s okay not to use regular expressions, just use var directly imgs = document.getElementsByTagName("img"); Then delete them one by one.
var reg = /<img. />/gi;
var str = "<body><span></span><IMG SRC='11111111'/> ;<div></div></body>";
alert(str.replace(reg, ""));
var images=document.images;
var x=images.length;
for(var i=0;i<x;i ){
var p=images[0].parentNode;
p.removeChild(images[0]);
}

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?

How do I use HTML5 form validation attributes to validate user input?

What is the purpose of the <iframe> tag? What are the security considerations when using it?

How to efficiently add stroke effects to PNG images on web pages?

What is the purpose of the <meter> element?

What are the best practices for cross-browser compatibility in HTML5?

What is the purpose of the <datalist> element?

What is the purpose of the <progress> element?
