Jquery中的load()方法

          本次在Jquery中使用loda方法加载一个公共的页面因为使用load()方法错误导致公共页面无法加载。在CSDN上找了好多资料,一开始一直没结果,我还滞留在技术的误区。但是经历过一番思考与寻找,总算不让我失望。


第一load()方法属于ajax()中的异步加载文本的方法,在使用load()方法加载html页面的时候,要把加载的html页面的body()标签去除。之后再用Jquery中的load()方法加载页面便可大功告成。


第二接下来将我的代码给大家展现出来,目前我的前端学习还处在一个初级阶段。

common.html


191.html

接下来就是写的css代码粘贴到这里:common.css

* {

box-sizing: border-box;

}

#qwe{

width:25%;

background-color:#8AC007;

border: 1px solid green ;

border-radius: 25px;

float: left;

}

#qwe ul{

list-style-type: none;

padding: 0; /* 内边距*/

text-align: center;

}

#qwe ul li a{

text-decoration: none;

display: block;

width: 100%;

height: 40px;

line-height: 40px;

}

#qwe ul li a:link,#qwe ul li a:visited{

color: crimson;

background-color: #8AC007;

}

#qwe ul li a:hover{

color: green;

background-color: #777777;

}

#qwe ul li a:active{

color: darkorange;

}

li.line{ margin:0px; padding:0px; font-size:0px; height:1px; overflow:hidden; background:#e5e5e5;}

你可能感兴趣的:(Jquery中的load()方法)