|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>html,div { margin: 0; padding: 0;} body { padding: 0px; margin: 0px; overflow: auto; height: 100%; } #winchm_template_button{ float: right; width: 93px; top: 7px; position: relative; text-align: right; right: 5px; height: auto; } #winchm_template_top{ padding: 0px; margin: 0px; border-bottom: 1px solid #9B9B9B; background-color: #B1CEFE; } #winchm_template_navigation{ margin: 0px; padding-top: 7px; padding-left: 7px; padding-bottom: 3px; padding-right: 0px; font-size: 8.5pt; font-family: Arial, Helvetica, sans-serif; font-weight: normal; color: #585858; } #winchm_template_title{ margin: 0px; padding-top: 4px; padding-left: 7px; padding-bottom: 7px; padding-right: 0px; font-size: 18px; font-family: Verdana, Geneva, sans-serif; color: #363636; } #winchm_template_content{ margin-top: 20px; margin-left: 15px; margin-bottom: 20px; margin-right: 15px; width: auto !important; width: 100%; } #winchm_template_footer{ border-width: 1px; border-color: #B1CEFE; border-top-style: solid; margin-top: 15px; margin-left: 15px; margin-bottom: 20px; margin-right: 15px; padding-top: 7px; padding-left: 0px; padding-bottom: 0px; padding-right: 0px; font-family: arial, helvetica, sans-serif; font-size: 8.5pt; color: #696969; width: auto; text-align: left; } #winchm_template_container{ margin: 0px; padding: 0px; position: static; padding-bottom: 3px; overflow: auto; background-color: #FFFFFF; } @media print { #winchm_template_container{ position: static; margin: 0px; padding: 5px; width: auto; height: auto; overflow: auto; } #winchm_template_button{ visibility:hidden; } } #winchm_template_navigation A:link {text-decoration: none; color:#004080} #winchm_template_navigation A:visited {text-decoration: none; color: #004080} #winchm_template_navigation A:active {text-decoration: none; color: #004080 } #winchm_template_navigation A:hover {text-decoration: none;color: #0080FF} A:link {text-decoration: underline; color:#0033CC} A:visited {text-decoration: underline; color: #0033CC} A:active {text-decoration: underline; color: #0033CC } A:hover {text-decoration: underline;color: #FF0000;}</style>
<script type="text/javascript">function isMobile() {
Agent = window.navigator.userAgent;
if (Agent.indexOf("iPhone") >= 1 || Agent.indexOf("iPad") >= 1 || Agent.indexOf("iPod") >= 1 || Agent.indexOf("Android") >= 1) {
return true;
} else {
return false;
}
}
function d_onresize() {
if (window.navigator.userAgent.indexOf("MSIE") >= 1) {
document.getElementById('winchm_template_container').style.pixelWidth = document.body.offsetWidth - 3;
document.getElementById('winchm_template_container').style.pixelHeight = document.body.offsetHeight - document.getElementById('winchm_template_top').offsetHeight - 4;
}
document.getElementById('winchm_template_container').style.top = document.getElementById('winchm_template_top').offsetHeight + 'px';
}
function d_onbeforeprint() {
document.getElementById('winchm_template_container').style.width = 'auto';
document.getElementById('winchm_template_container').style.height = 'auto';
}
function d_onafterprint() {
d_onresize();
}
if (!isMobile()) {
window.onload = d_onresize;
window.onresize = d_onresize;
window.onbeforeprint = d_onbeforeprint;
window.onafterprint = d_onafterprint;
document.write("<style>\n");
document.write("body {overflow: hidden;}\n");
document.write("#winchm_template_container {position: absolute;overflow: auto;top : 0px;right: 0px;bottom: 0px;left: 0px;}\n");
document.write("</style>\n");
}</script>
</head>
<div id="html1" style="position:absolute; overflow:hidden; left:500px; top:25px; width:200px; height:39px; z-index:5">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<META name="Author" content="Sheneyan" />
<script type="text/javascript">function encode(s) {
return s.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/([\\\.\*\[\]\(\)\$\^])/g, "\\$1");
}
function decode(s) {
return s.replace(/\\([\\\.\*\[\]\(\)\$\^])/g, "$1").replace(/>/g, ">").replace(/</g, "<").replace(/&/g, "&");
}
function highlight(s) {
if (s.length == 0) {
alert('搜索关键词未填写!');
return false;
}
s = encode(s);
var obj = document.getElementsByTagName("body")[0];
var t = obj.innerHTML.replace(/<span\s+class=.?highlight.?>([^<>]*)<\/span>/gi, "$1");
obj.innerHTML = t;
var cnt = loopSearch(s, obj);
t = obj.innerHTML
var r = /{searchHL}(({(?!\/searchHL})|[^{])*){\/searchHL}/g t = t.replace(r, "<span class='highlight'>$1</span>");
obj.innerHTML = t;
alert("搜索到关键词" + cnt + "处")
}
function loopSearch(s, obj) {
var cnt = 0;
if (obj.nodeType == 3) {
cnt = replace(s, obj);
return cnt;
}
for (var i = 0,
c; c = obj.childNodes[i]; i++) {
if (!c.className || c.className != "highlight") cnt += loopSearch(s, c);
}
return cnt;
}
function replace(s, dest) {
var r = new RegExp(s, "g");
var tm = null;
var t = dest.nodeValue;
var cnt = 0;
if (tm = t.match(r)) {
cnt = tm.length;
t = t.replace(r, "{searchHL}" + decode(s) + "{/searchHL}") dest.nodeValue = t;
}
return cnt;
}</script>
<style type="text/css">.highlight{background:green;font-weight:bold;color:white;}</style></head>
<body>
<form>
<p>
<input name="s" id="s" title="搜索内容:" />
<input type="submit" value="搜索" /></p>
</form>
</body>
</html>
</div>
<body>
<div id="winchm_template_top">
<div id="winchm_template_button">
<IMG alt="Previous topic" src="btn_prev_n.gif">
<IMG alt="Next topic" src="btn_next_n.gif"></div>
<div id="winchm_template_navigation">Help > ($navigation$)</div>
<div id="winchm_template_title">($title$)</div></div>
<div id="winchm_template_container">
<div id="winchm_template_content">($content$)</div>
<div id="winchm_template_footer">Copyright © 2018. All rights reserved. (To change the copyright info, just edit it in template.)</div></div>
</body>
</html>
|
|