JavaScript Filters HTML Tag code

Source: Internet
Author: User
Keywords Web page production Ajax javascript
Tags ajax code content html http javascript replace script

JavaScript Tutorials Filter HTML tag code
<head>
<meta http-equiv= "Content-type" content= "HTML; charset=gb2312 "/>
<title>javascript Tutorial Filters HTML Tag Code </title>

<script language= "JavaScript" >
<!--

function SetContent () {
var obj = document.getElementById (' code ');
Obj.value = Obj.value.replace (/</?[ ^>]*>/g; Remove HTML tag
Obj.value = Obj.value.replace (/[|) *n/g, ' n '); Remove line trailing blanks
Obj.value = Obj.value.replace (/n[s| |) *r/g, ' n '); Remove extra blank lines
alert (Obj.value);
}


var str = "<b> 1111 <u> 2222 <i> 3333 </i> </u> </b>";
str = str.replace (/<[^>]+> G, "");
str = str.replace (/< (. *) >. * </1>/, "");
alert (str);


function SetContent (str) {
str = str.replace (/</?[ ^>]*>/g; Remove HTML tag
Str.value = str.replace (/[|) *n/g, ' n '); Remove line trailing blanks
str = str.replace (/n[s| |) *r/g, ' n '); Remove extra blank lines
return str;
}


<!--
str = "<a href=" xxx.asp tutorial ">123456789</a>";
Alert (Str.replace/<a.*?> (. *?) </a>/ig, "$");
-->
-->
</script>
</head>

<body>
</body>
</html>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.