上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: // // ViewController.swift // plist读写 // // Created by mac on 15/7/13. // Copyright (c) 2015年 fangyuhao. All rights reserved. // import UIKit class Vi 阅读全文
posted @ 2016-12-16 23:28 乱笙歌 阅读(362) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.swift // xml读写 // // Created by mac on 15/7/14. // Copyright (c) 2015年 fangyuhao. All rights reserved. // import UIKit class View 阅读全文
posted @ 2016-12-16 23:27 乱笙歌 阅读(235) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.swift // json读写 // // Created by mac on 15/7/14. // Copyright (c) 2015年 fangyuhao. All rights reserved. // import UIKit class Vie 阅读全文
posted @ 2016-12-16 23:26 乱笙歌 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 打印路由信息: route print 如何临时添加电脑内部路由【 route add 网段 mask 子网掩码 网关】 例如:route add 172.18.0.0 mask 255.255.0.0 172.16.0.1 电脑重启后,该路由自动消失。 如果要永久添加电脑内部路由,还需跟上参数【 阅读全文
posted @ 2016-12-16 23:24 乱笙歌 阅读(390) 评论(0) 推荐(1) 编辑
摘要: 1、打开运行 2、输入CMD 3、在命令提示符下输入: netsh c interface ip dump C:\我的网络配置.txt 4、打开您在C:\ 下的“我的网络配置 .txt” 5、分析一下后,将类似于这部分复制出来(以下是我的,你复制你的) set address name="本地连接" 阅读全文
posted @ 2016-12-16 23:22 乱笙歌 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 在默认情况下,点击链接,浏览器会向href所指的地址发送请求, 点击表单提交,浏览器会将表单中的数据进行发送 如果要禁止,可以使用如下语句: 阅读全文
posted @ 2016-11-28 21:34 乱笙歌 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 判断是ie浏览器还是火狐等标准浏览器 var ie=!+”\v1”; 因为ie浏览器不支持\v,也就是水平制表符,所以“\”符号会被忽略,前面的+号是把“\v1”强制转化成数字的意思,转化后的结果为v1,很显然不是一个数字,所以IE返回NaN,也就是fals,再用!反一下,如果此时ie值为true, 阅读全文
posted @ 2016-11-28 21:33 乱笙歌 阅读(150) 评论(0) 推荐(0) 编辑
摘要: css写法 body { font size:12px; star:expression(document.oncontextmenu=function(){return false;}); } js写法 document.oncontextmenu=function(){return false; 阅读全文
posted @ 2016-11-28 21:29 乱笙歌 阅读(209) 评论(0) 推荐(0) 编辑
摘要: document.addEventListener("事件名称", 函数, false); function 某函数(event){ // 方法执行 } addEventListener里最后一个参数决定该事件的响应顺序; 如果为true事件执行顺序为 addEventListener 标签的onc 阅读全文
posted @ 2016-11-28 21:27 乱笙歌 阅读(12185) 评论(0) 推荐(1) 编辑
摘要: 基本介绍: showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.showModalDialog() 方法用来创建一个显示HTML内容的模态对话框。 window.showModelessDialog() 方法用来创建 阅读全文
posted @ 2016-11-28 21:27 乱笙歌 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页