摘要: history对象包含用户在浏览器窗口中访问过的URLhistory对象是window对象的一部分,也就是说可以window.history进行访问1、history对象的属性(length) console.log(history.length);通过history... 阅读全文
posted @ 2017-06-28 15:55 Newman·Li 阅读(308) 评论(0) 推荐(0)
摘要: 删除表的命令drop table 表名;1如果有200张表,执行200次,想想就不想动手了。下面提供一个使用information_schema库的方案:SELECT CONCAT('drop table ',table_name,';') FROM information_schema.`T... 阅读全文
posted @ 2017-06-28 08:35 Newman·Li 阅读(132) 评论(0) 推荐(0)