1.对象集合: (1).all[]; (2).images[]; (3).anchors[]; (4).forms[]; (5).links[]; 2.属性: document.cookie;设置或返回当前文档有关的所有cookie document.title;返回当前文档的标题 document ...
分类:
Web程序 时间:
2016-05-07 01:02:36
阅读次数:
166
一、BOM 1、window{ document{ anchors forms images links location } frames history location navigator screen } 2、定时器 function execute() { console.info("执行 ...
分类:
其他好文 时间:
2016-04-19 06:16:00
阅读次数:
134
Window 1. doucument frames history location navigator screen | anchors forms location images links 2.命名函数:function funcName() { } 其中,funcName是函数的名称,可以 ...
分类:
其他好文 时间:
2016-04-18 22:33:32
阅读次数:
257
BOM 1、(*关系图*) window document frames history location navigator screen | anchors forms imgaes links location 2、定时器 (1)、setTimeout(定时执行) -->实现一个函数能够在指定 ...
分类:
其他好文 时间:
2016-04-18 00:42:10
阅读次数:
126
Anchors Anchors是确保该控件与它的父控件的相对位置保持不变,即使父控件改变大小akLeft为True是控件与它的父控件的左边缘的距离不变akTop为True是控件与它的父控件的上边缘的距离不变akRight为True是控件与它的父控件的右边缘的距离不变akBottom为True是控件与
分类:
其他好文 时间:
2016-02-18 16:22:20
阅读次数:
159
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o
分类:
其他好文 时间:
2016-02-16 18:26:32
阅读次数:
148
MouseArea { id: mouseRegion anchors.fill: parent; acceptedButtons: Qt.LeftButton | Qt.RightButton // 激活右键(别落下这个) onClicke...
分类:
其他好文 时间:
2016-01-07 16:46:09
阅读次数:
313
Rect TransformPosx Posy Posz : ui相对于父级的位置Anchors :锚点 定义了与父体之间的位置关系 一个锚点由四个锚组成 四个锚分别代表了UI元素的四个角Width Height :款高 任意一个为负时将不会显示UI元素设置锚点时 按住alt可以使元素对应位置到锚....
分类:
编程语言 时间:
2015-12-23 21:04:38
阅读次数:
196
import QtQuick 2.4import QtQuick.Window 2.2Window { visible: true MainForm { anchors.fill: parent } Rectangle{ width: 300 ...
分类:
其他好文 时间:
2015-08-27 22:30:37
阅读次数:
220
1. document.referrer可以获得上一页的地址,使用document.anchors获得页面上面所有的链接元素,而不必使用 document.getElementsByTagName('A');,同样道理还有document.forms , document.images。2. fun...
分类:
编程语言 时间:
2015-07-22 18:41:52
阅读次数:
227