js替换url里面的变量

function replaceParamVal(paramName,replaceWith) { var oUrl = this.location.href.toString(); var re=eval('/('+ paramName+'=)([^&]*)/gi'); if (r...
emer 发布于  2018-4-2 13:51 

$regex使用

$regex操作符的介绍 MongoDB使用$regex操作符来设置匹配字符串的正则表达式,使用PCRE(Pert Compatible Regular Expression)作为正则表达式语言。 regex操作符 {<field>:{$regex:/pattern/,$options:’<options>’}} {<field...
emer 发布于  2018-3-22 17:47 

禁用浏览器后退

<script language="javascript"> //防止页面后退 history.pushState(null, null, document.URL); window.addEventListener('popstate', function () { hi...
emer 发布于  2018-3-21 11:53 
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