emer 发布于  2018-3-15 22:16 

如何js屏蔽所有出错信息?

var killErrors = function(value) { return true }; window.onerror = null; window.onerror = killErrors; 虽然没什么用,但是上线后不想控制台输出内容
emer 发布于  2018-3-15 17:11 

chrome浏览器有缓存时候,自动填充会有淡黄色背景色,如何解决?

情景一:input文本框是纯色背景的 解决办法: input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset; -webkit-text-fill-color: #333; } 情景二:input文本框是使用图片背景的 解决办法...
emer 发布于  2018-3-14 16:46 
emer 发布于  2018-3-13 09:30 

js输出内容到新网页(预览)

myWindow=window.open('','','width=200,height=100') myWindow.document.write("This is 'myWindow'") myWindow.focus() myWindow.opener.document.write("This is the parent window")
emer 发布于  2018-3-1 15:13 

JS合并数组的几种方法及优劣比较

本文属于JavaScript的基础技能. 我们将学习结合/合并两个JS数组的各种常用方法,并比较各种方法的优缺点. 我们先来看看具体的场景: 代码如下: var q = [ 5, 5, 1, 9, 9, 6, 4, 5, 8]; var b = [ "tie", "mao", "csdn", "ren", "f...
 发布于  2018-3-1 12:00 

时间戳互相转换工具

var no=new Date().getTime(); console.log(no); Date.prototype.format = function(format) { var date = { "M+": this.getMonth() + 1, ...
emer 发布于  2018-2-27 11:26 
emer 发布于  2018-2-26 10:33