消除table中的th除去了所有border,margin,padding之后还是会有间隙的问题
<table border="0" cellspacing="0" cellpadding="0">
移动端必须加的代码:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
json.org
可查看json的标准格式。是最近在使用ajax的时候遇到的。因为会正常返回的时候却执行了error。原因就是返回的json格式不符合标准。
ajax:
$.ajax({
url: '',
type:'POST',
data:{'openID':"jd",'seq':15,'sessionId':'123')}
dataType:'json',
success:function(res){
console.log(res)
},
error:function(){
window.location.href=""
}
})
将ajax中的dataType改为jsonp可以解决跨域的问题。
除去a标签的下划线:
text-decoration:none;
让a标签和p标签一样,除了有跳转功能:
a:link{
text-decoration:none; /* 指正常的未被访问过的链接*/
}
a:visited{
text-decoration:none; /*指已经访问过的链接*/
}
a:hover{
text-decoration:none;/*指鼠标在链接*/
}
a:active{
text-decoration:none;/* 指正在点的链接*/
}
如果父容器只包含浮动元素,且未指定高度,那么父容器的高度将变为0。
清除浮动,解决方法有:
1.在父元素结束前添加一个宽高为0,clear:both 的空div
2.为父元素添加overflow: hidden
3.使用after伪对象清除浮动
本文长期更呀~