实训任务暂时离开

This commit is contained in:
daiao 2017-03-24 19:55:49 +08:00
parent e0739d5d57
commit a9fae4da36
1 changed files with 2 additions and 18 deletions

View File

@ -11,29 +11,13 @@
</li>
<div class="task-popup-submit clearfix">
<a href="javascript:void(0);" class="task-btn fl" onclick="hideModal()">取消</a>
<a href="javascript:void(0);" class="task-btn task-btn-green fr" onclick="close_web();">确定</a>
<a href="javascript:void(0);" class="task-btn task-btn-green fr" onclick="hideModal();close_web();">确定</a>
</div>
</ul>
</div>
</div>
<script>
function close_web(){
if (navigator.userAgent.indexOf("MSIE") > 0) { //IE浏览器
if (navigator.userAgent.indexOf("MSIE 6.0") > 0) {
window.opener = null; window.close();
}
else {
window.open('', '_top'); window.top.close();
}
}
else if (navigator.userAgent.indexOf("Firefox") > 0 || navigator.userAgent.indexOf("Chrome") > 0 ) { //火狐浏览器和谷歌
window.location.href = 'about:blank';
//window.history.go(-2);
}
else { //其他浏览器
window.opener = null;
window.open('', '_self', '');
window.close();
}
window.location.href = '<%= user_path(User.current) %>';
}
</script>