This example describes the use of the unwrap () method in jquery. Share to everyone for your reference. The specific analysis is as follows:
This method will remove the parent element of the matching element.
The effect of clearing the wrap () method can be seen from the literal meaning of the method.
Grammar:
Copy Code code as follows:
Instance code:
Copy Code code as follows:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
<meta name= "Author" content= "http://www.jb51.net/"/>
<title> Cloud-dwelling community </title>
<style type= "Text/css" >
Div
{
width:200px;
height:200px;
BORDER:1PX solid blue;
}
P
{
width:150px;
height:150px;
border:1px solid red;
}
</style>
<script type= "Text/javascript" src= "Jquery/1.4.4/jquery.min.js" ></script>
<script type= "Text/javascript" >
$ (document). Ready (function () {
$ ("button"). Click (function () {
$ ("P"). Unwrap ();
});
});
</script>
<body>
<div>
<p> I am P element </p>
</div>
<button> use div to wrap each paragraph </button>
</body>
The above code can remove the parent element of the P element.
I hope this article will help you with your jquery programming.
This article is from: Ant Tribe http://www.softwhy.com/