摘要:Javascript: alert(document.body.clientWidth); //网页可见区域宽(body) alert(document.body.clientHeight); //网页可见区域高(body) alert(document.body.offsetWidth); //网
阅读全文
随笔分类 - 代码片段
摘要:Javascript: alert(document.body.clientWidth); //网页可见区域宽(body) alert(document.body.clientHeight); //网页可见区域高(body) alert(document.body.offsetWidth); //网
阅读全文
摘要:var url = require("url"), fs=require("fs"), http=require("http"), path = require("path");http.createServer(function (req, res) { var pathname=__dirnam
阅读全文
摘要:function get(url, options, callback){ //定义get函数 if(XMLHttpRequest){ var xhr=new XMLHttpRequest(); }else{ var xhr=new ActiveXObject("Microsoft.XMLHTTP"
阅读全文
摘要:function post(url, options, callback){ //定义post函数 if(XMLHttpRequest){ var xhr=new XMLHttpRequest(); }else{ var xhr=new ActiveXObject("Microsoft.XMLHTT
阅读全文
|