摘要:
//返回顶部 function backTop(btnId) { var btn = document.getElementById(btnId); var d = document.documentElement; var b ... 阅读全文
摘要:
weinre这种方法。1.首先你要安装nodejs,要装一个低版本的,最新版本的装weinre会装不上。这里给个下载地址 https://nodejs.org/dist/v0.10.20/node-v0.10.20-x86.msi2.然后npm命令 npm install -g weinre3.运... 阅读全文
摘要:
1.首先使用 npm 安装 supervisor: npm install -g supervisor2.使用 supervisor 命令启动 app.js: supervisor app.jssupervisor 这个小工具可以解决开发中的调试问题。 阅读全文
摘要:
//A对象function A(){ this.abc = 12;}A.prototype.show = function(){ alert(this.abc);}//B对象继承Afunction B(){ //this -> new B() 继承父级属性 A.call(this);... 阅读全文
摘要:
1.php链接数据库mysql_connect('localhost','root','13456');2.选择数据库mysql_select_db('库名');3.执行sql语句,插入一条数据mysql_query('insert into 表名() valuer( )');4.循环一张表中的数据... 阅读全文
摘要:
var IeAuto = navigator.userAgent.indexOf('MSIE') > -1; //判断是不是Ie浏览器 并赋值给变量 window.onload=function(){ function show(obj,id,html,width,height){ ... 阅读全文