⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 javascript.js

📁 易联多用户Blog网站程序源码(多层模式) 包括DAL、BLL、Common等多层 默认管理员账号admin
💻 JS
字号:
String.prototype.trim = function()
{
    return this.replace(/(^\s*)|(\s*$)/g, "");
}

function Read(url)
{
  window.open(url, "", "menubar=yes, toolbar=yes, location=yes, status=yes, channelmode=yes, resizable=yes, scrollbars=yes");
}

var MAX_IMAGE_WIDTH = 518;

function OnClick(image)
{
	if(image.tag == "true")
	{
        window.open(image.src, "", "menubar=yes, toolbar=yes, location=yes, status=yes, channelmode=yes, resizable=yes, scrollbars=yes");
	}
}

function SetAttribute(image)
{
	if(image.offsetWidth > MAX_IMAGE_WIDTH)
	{
	    var height = MAX_IMAGE_WIDTH * image.offsetHeight / image.offsetWidth;
	    
	    image.style.cursor = "hand";
	    image.style.width = MAX_IMAGE_WIDTH;
	    image.style.height = height;
	    
	    image.tag = "true";
	    image.alt = "请单击查看原始尺寸的图片。";
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -