文章分类 -  js

top.location.href和localtion.href有什么不同
摘要:top.location.href=”url” 在顶层页面打开url(跳出框架) self.location.href=”url” 仅在本页面打开url地址 parent.location.href=”url” 在父窗口打开Url地址 this.location.href=”url” 用法和self的用法一致 if (top.location == self.location) 判断当前location 是否为顶层来 禁止frame引用 如果页面当中有自定义的frame的话,也可以将parent self top换为自定义frame的名称 效果就是在自定义frame... 阅读全文
posted @ 2012-06-01 15:47 染指的浮云 阅读(22018) 评论(0) 推荐(2)
<td>标签中valign="middle"与align="center"区别
摘要:valign 调格子中内容的垂向(上下)位置,valign=“top“上面, valign=“middle“中间,或 valign=“bottom 下面。align 调格子中内容的(左右)横向位置,align="LEFT“ 左边对齐, align="CENTER“中间 或 align="RIGHT“右边对齐。 阅读全文
posted @ 2012-04-10 17:24 染指的浮云 阅读(1355) 评论(0) 推荐(0)