/************************************************************************************************** 文件: js/global.js 说明: phpok默认模板中涉及到的js 版本: 4.0 网站: www.phpok.com 作者: qinggan 日期: 2014年9月1日 ***************************************************************************************************/ function top_search() { var title = $("#top-keywords").val(); if(!title) { alert('请输入要搜索的关键字'); return false; } return true; } function todesktop(surl, sname) { try { var wshshell = new activexobject("wscript.shell"); var ourllink = wshshell.createshortcut(wshshell.specialfolders("desktop") + "\\" + sname + ".url"); ourllink.targetpath = surl; ourllink.save(); } catch (e) { alert("当前ie安全级别不允许操作!"); } } //返回顶部 $(document).ready(function(){ if($("meta[name=totop]").attr("content")=="true"){$("
").appendto('body');$("#totop").css({width:'50px',height:'50px',bottom:'10px',right:'15px',position:'fixed',cursor:'pointer',zindex:'999999'});if($(this).scrolltop()==0){$("#totop").hide();}$(window).scroll(function(event){if($(this).scrolltop()==0){$("#totop").hide();}if($(this).scrolltop()!=0){$("#totop").show();}});$("#totop").click(function(event){$("html,body").animate({scrolltop:"0px"},666)});} });