📄 main.js
字号:
//<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
//-----------------------------------------------------------------------------------
var iXuEr = new Object();
//-----------------------------------------------------------------------------------
iXuEr.menuOffX = 0 // 菜单距连接文字最左端距离
iXuEr.menuOffY = 20 // 菜单距连接文字顶端距离
iXuEr.GetCodeSrc = "" // 请勿更改
//-----------------------------------------------------------------------------------
// 状态栏提示文字:
window.status = "批量上传图片www.sun116.net";
//-----------------------------------------------------------------------------------
// Pop-it menu- By Dynamic Drive - Modified by Wbird
// For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
// This credit MUST stay intact for use
//-----------------------------------------------------------------------------------
var vBobjects = new Array();
var fo_shadows = new Array();
var ie4 = document.all&&navigator.userAgent.indexOf("Opera")==-1;
var ns6 = document.getElementById&&!document.all;
var ns4 = document.layers;
function MM_findObj(n, d) {
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
// showmenu
// vmenu:内容,允许为空
// MOD 0=关闭浏览器自适应,用于版面导航菜单
document.write("<div class=\"menuskin\" id=\"popmenu\" onmouseover=\"clearhidemenu();highlightmenu(event,'on')\" onmouseout=\"highlightmenu(event,'off');dynamichide(event)\" style=\"Z-index:1009\"></div>")
function MM_findObj(n, d) {
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function fetch_object(idname, forcefetch){
if (typeof(vBobjects[idname]) == "undefined"){
vBobjects[idname] = MM_findObj(idname);
}
return vBobjects[idname];
}
function iecompattest(){
return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}
function showmenu(e, vmenu, vmenuobj, mod){
if (!document.all&&!document.getElementById&&!document.layers){return;}
var which = vmenu;
if (vmenuobj){
var MenuObj = fetch_object(vmenuobj);
if (MenuObj){which = MenuObj.innerHTML;}
}
if (!which){return;}
clearhidemenu();
menuobj = ie4? document.all.popmenu : ns6? document.getElementById("popmenu") : ns4? document.popmenu : "";
menuobj.thestyle = (ie4||ns6) ? menuobj.style : menuobj;
if (ie4 || ns6){
menuobj.innerHTML = which;
}else{
menuobj.document.write('<layer name=gui bgcolor="#E6E6E6" width="165" onmouseover="clearhidemenu()" onmouseout="hidemenu()">' + which + '</layer>')
menuobj.document.close();
}
menuobj.contentwidth = (ie4||ns6)? menuobj.offsetWidth : menuobj.document.gui.document.width
menuobj.contentheight = (ie4||ns6)? menuobj.offsetHeight : menuobj.document.gui.document.height
eventX=ie4? event.clientX : ns6? e.clientX : e.x
eventY=ie4? event.clientY : ns6? e.clientY : e.y
var rightedge=ie4? document.body.clientWidth-eventX : window.innerWidth-eventX
var bottomedge=ie4? document.body.clientHeight-eventY : window.innerHeight-eventY
var getlength
if (rightedge < menuobj.contentwidth){
getlength=ie4? document.body.scrollLeft+eventX-menuobj.contentwidth+iXuEr.menuOffX : ns6? window.pageXOffset+eventX-menuobj.contentwidth : eventX-menuobj.contentwidth
}else{
getlength = ie4? ie_x(event.srcElement)+iXuEr.menuOffX : ns6? window.pageXOffset+eventX : eventX
}
menuobj.thestyle.left = getlength + 'px'
if (bottomedge < menuobj.contentheight && mod != 0){
getlength=ie4? document.body.scrollTop+eventY-menuobj.contentheight-event.offsetY+iXuEr.menuOffY-23 : ns6? window.pageYOffset+eventY-menuobj.contentheight-10 : eventY-menuobj.contentheight
}else{
getlength=ie4? ie_y(event.srcElement)+iXuEr.menuOffY : ns6? window.pageYOffset+eventY+10 : eventY
}
menuobj.thestyle.top = getlength + 'px';
menuobj.thestyle.visibility = "visible";
return false;
}
function ie_y(e){
var t=e.offsetTop;
while(e=e.offsetParent){
t+=e.offsetTop;
}
return t;
}
function ie_x(e){
var l=e.offsetLeft;
while(e=e.offsetParent){
l+=e.offsetLeft;
}
return l;
}
function ie_dropshadow(el, color, size)
{
var i;
for (i=size; i>0; i--)
{
var rect = document.createElement('div');
var rs = rect.style
rs.position = 'absolute';
rs.left = (el.style.posLeft + i) + 'px';
rs.top = (el.style.posTop + i) + 'px';
rs.width = el.offsetWidth + 'px';
rs.height = el.offsetHeight + 'px';
rs.zIndex = el.style.zIndex - i;
rs.backgroundColor = color;
var opacity = 1 - i / (i + 1);
rs.filter = 'alpha(opacity=' + (100 * opacity) + ')';
//el.insertAdjacentElement('afterEnd', rect);
fo_shadows[fo_shadows.length] = rect;
}
}
function ie_clearshadow(){
for(var i=0;i<fo_shadows.length;i++)
{
if (fo_shadows[i])
fo_shadows[i].style.display="none"
}
fo_shadows=new Array();
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
function hidemenu(){
if (window.menuobj)
menuobj.thestyle.visibility=(ie4||ns6)? "hidden" : "hide"
ie_clearshadow()
}
function dynamichide(e){
if (ie4&&!menuobj.contains(e.toElement))
hidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
hidemenu()
}
function delayhidemenu(){
if (ie4||ns6||ns4)
delayhide=setTimeout("hidemenu()",500)
}
function clearhidemenu(){
if (window.delayhide){clearTimeout(delayhide);}
}
function highlightmenu(e,state){
if (document.all)
source_el=event.srcElement
else if (document.getElementById)
source_el=e.target
if (source_el.className=="menuitems"){
source_el.id=(state=="on")? "mouseoverstyle" : ""
} else {
while(source_el.id!="popmenu"){
source_el=document.getElementById? source_el.parentNode : source_el.parentElement
if (source_el.className=="menuitems"){
source_el.id=(state=="on")? "mouseoverstyle" : ""
}
}
}
}
if (ie4||ns6){document.onclick = hidemenu;}
//-----------------------------------------------------------------------------------
// 生成弹出窗口
function WinPop(url, NewWindowName, width, height, top, left, scrollbars, f){
window.open(url, NewWindowName, 'width=' + width + ', height=' + height + ', top=' + top + ', left=' + left + ', toolbar=no, menubar=no, scrollbars=' + scrollbars + ', resizable=yes, location=no, status=no')
// 当f值不为0时,自动将窗口置后
if(f!=0){window.focus();}
}
// 生成模式对话框
function DialogM(url, vArguments, width, height, scrollbars){
window.showModalDialog(url, vArguments, "dialogWidth:" + width + "px; dialogHeight:" + height + "px; scroll:" + scrollbars + "; resizable:yes; location:no; status:no;")
}
// 生成非模式对话框
function DialogL(url, vArguments, width, height, top, left, scrollbars){
window.showModelessDialog(url, vArguments, "dialogWidth:" + width + "px; dialogHeight:" + height + "px; scroll:" + scrollbars + "; resizable:yes; location:no; status:no;")
}
// 刷新验证码
function ReLoadGetCode(){
try{
var GetCode = document.getElementById("GetCode");
if(iXuEr.GetCodeSrc == ""){iXuEr.GetCodeSrc = GetCode.src;}
GetCode.src = iXuEr.GetCodeSrc + "?t=" + Math.random();
}
catch(e){};
}
//-----------------------------------------------------------------------------------
// 对链接开新窗口符合Web标准的补充脚本
// 将原来的 target="_blank" 修改为:rel="external"
// Guidy 2005-12-03
//-----------------------------------------------------------------------------------
function externalLinks(){
if (!document.getElementsByTagName){return};
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external"){
anchor.target = "_blank";
}
}
}
window.onload = externalLinks;
//-----------------------------------------------------------------------------------
// 输出一个Iframe
// Guidy 2005-12-31
//-----------------------------------------------------------------------------------
function drawIframe(p_Src, p_id, p_width, p_height, p_border){
document.write("<iframe src=\"" + p_Src + "\" frameborder=\"0\" name=\"" + p_id + "\" id=\"" + p_id + "\" style=\"height:" + p_height + "px; width:" + p_width + "px; border:" + p_border + "px solid #000000;\">您的浏览器不支持框架页</iframe>");
}
//-----------------------------------------------------------------------------------
// 上传接口部分
// 本函数只支持插入到文本框,如果需要在您的代码中调用反馈回来的参数,那么我建议您在返回参数之后调用文本框的值即可
// 参数说明:
// RootPath:相对于被调用页面的网站根路径,如果是在网站根目录调用的则为“/”,如果是在二级目录调用的则为“../”,依次论推
// 其他参数,我想不用注释大家也应该明白是什么意思了吧
// p_ImgPreview:如果图像成功被添加了水印和生成缩略图,则此值返回为“1”,此参数并没有多大应用价值
//-----------------------------------------------------------------------------------
// 初始化外部API参数
var o_FileID, o_FileName, o_FilePath, o_FileSize, o_FileContentType, o_FileType, o_FileExt, o_FileWidth, o_FileHeight, o_FilePreview, o_TotalSize, o_ImgPreview
var s_FileID, s_FileName, s_FilePath, s_FileSize, s_FileContentType, s_FileType, s_FileExt, s_FileWidth, s_FileHeight, s_FilePreview, s_TotalSize, s_ImgPreview
var oframe = "iXuErUpLoad";
function drawUpLoad(RootPath){
//document.write("<div id=\"UpLoadInterface\">正在载入上传接口....</div>");
// 输出上传接口
drawIframe(RootPath + "UpLoad/", oframe, 0, 0, 0);
drawIframe(RootPath + "UpLoad/", "TempData", 0, 0, 0);
document.write("<script type=\"text/javascript\" src=\"" + RootPath + "UpLoad/iXs_UpLoadPost.asp\"></script>");
document.write("<script type=\"text/javascript\" src=\"" + RootPath + "Script/iXs_UpLoad.js\"></script>");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -