js 操作

//通过js为对象添加样式
obj.addClass("classname");
//通过js为对象移除样式
obj.removeClass("classname");
//获取当前页面url
window.location.href
//判断字符包含关系
str.indexOf("str")>0  //包含
//每10分加载  1秒=1000毫秒    1000*60*10
setTimeout("fun()", 600000);
//获取父页面对象
window.opener.document

 

//Javascript刷新页面的几种方法: 
history.go(0);
location.reload(); 
location=location; 
location.assign(location); 
document.execCommand('Refresh'); 
window.navigate(location);
location.replace(location);
document.URL=location.href; 

 

你可能感兴趣的:(js)