分类:
2006-07-16 21:50:55
window.clipboardData.setData('text','要复制的文字'); |
使用 window.opener.location.reload() 刷新,如果父窗口在此之前如果有过提交数据的动作,则会出现这么个讨厌的对话框 应该用: |
Math.round(Math.random()*10000) |
encodeURI(String) |
function setCookie(name,value){ var Days = 30; var exp = new Date(); exp.setTime(exp.getTime() + Days*24*60*60*1000); document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString(); } function getCookie(name){ var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)"); if(arr=document.cookie.match(reg)) return unescape(arr[2]); else return null; } |
if(document.all){ document.getElementById('objid').innerText = value; } else{ document.getElementById('objid').textContent = value; } |
var d = new Date(); d.getTime();//注意,该方法返回的是从1970年1月1日开始至今的毫秒数,跟php的time()返回秒数不同 //所以,要跟php的值一致,需要除以1000 |
function check(){%3
给主人留下些什么吧!~~
|