`
shuaigg.babysky
  • 浏览: 571627 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论
文章列表
var a = new Function('x,y,z' , 'return x + y + z');       var b = new Function('alert(123)');   如果只有一个参数, 则定义的函数中默认接受参数的个数为0 如果有两个参数, 则第一个参数为定义函数的默认参数列表,将参数变量使用,进行分割。 第二个参数为执行的语句的字符串。       a();   b();
<form action="http://www.baidu.com/s" name="myform">   <input type="text" name="wd"/>   <input type="text" />   <input type="submit" />  </form>  <a href="javascript:void(0)" id="ali">请 ...
1.call          作用于的对象this是第一个参数,后面的不定长参数是作为参数传递过去的。   <input type="text" id="t" value="input value"/>   <script>   function aaa(g) {     alert(this.value);     alert(g); }   aaa.call(document.getElementById('t') , 'test string'); </script> ...
<html> <head> </head> <body> <form name="myform"> <div id="templete"><input type="text" value=""/></div> <input type="submit" value="append" id="append"/> ...

web

<iframe id="hideiframe" style="position: absolute; z-index: -1; width: 100%; height:850px; top: 0; left: 0; scrolling: no; background-color:white;" frameborder="0" src="<%=request.getContextPath()%>/msgboard/blank_page.jsp"></iframe>
1377-4260-4983-2510-8542-5740  

手机号正则

/^(?:1|(?:1[3|5|8])|(?:13[0-9]|15[0|1|2|3|5|6|7|8|9]|18[0|5|6|7|8|9])\d{0,8})$/;
function readXml(path , handler) { var dom ; var ajax = false; if(window.ActiveXObject) { dom = new ActiveXObject("Microsoft.XMLDOM"); } else { var useragent = navigator.userAgent.toLowerCase(); if(/mozilla/.test(useragent) && !/(?:compatible|webkit)/.test(useragen ...
 /* safari: /webkit/.test( userAgent ), opera: /opera/.test( userAgent ), msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ), mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent ) */ /*  ie : Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; QQPin ...
Cookie cookie = new Cookie("username" , "zhoulianyi");  cookie.setMaxAge(new Long(System.currentTimeMillis()).intValue() + 24 * 60 * 60 * 1000);  cookie.setPath("/Test/book");            //这里指定了path  response.addCookie(cookie);
http://d2forum.org/d2/4/spread.html
Cookie在javascript上读取出来是一个字符串   username=xiaoma; age=22; password=123abc; comeon=asd123     使用document.cookie可以得到这个字符串   写入cookie的时候就是给这个字符串赋值   写入多个cookie     var d = new Date(); d.setTime(d.getTime() + 60 * 60 * 1000); document.cookie = 'username ...
            //setTimeout("doTimeout()" , 5000);   正确,5秒后执行             //setTimeout(doTimeout() , 5000);     错误,会立即执行             //setTimeout(function() {             正确,5秒后执行             //    doTimeout();             //} , 5000);             //setTimeout(doTimeout , 5000);       正确, ...
window.open("","_self"); window.close();     可以适用于无提示关闭窗口,支持ie,safari,opera,chrome   不适用于firefox,如果修改dom.allow_scripts_to_close_windows;true就可以了。   适用于所有由父窗口打开的窗口的关闭。不用进行任何设置。        
如果不是form元素 直接使用btn.innerHTML的方式访问就行了。     如果是套在form元素里面的元素,ie上直接使用id.innerHTMl的方式访问无效,因为不同的form中允许出现相同id的元素, 这个时候,应该使用form.id.innerHTML的方式访问就行了。   firefox上即使是套在form元素里面的元素也可以直接btn.innerHTML   对于 safari和chrome同样可以不写form进行访问,而对于opera 来说就必须通过form进行访问   所以通过(form.)id.innerHTML的方式进行dom元素的访问是个不错 ...
Global site tag (gtag.js) - Google Analytics