欢迎来图定制
document.getElementById("menu7").className = "on";
var resizeContentID = "editor";
var maxWidth = $("#editor").width();
var images = document.getElementById(resizeContentID).getElementsByTagName("img");
for (var i = 0; i < images.length; i++) {
resizepic(images[i]);
}
function resizepic(thispic)
{
thispic.onload = function() {
if (thispic.width > maxWidth) {
thispic.style.height = thispic.height * maxWidth / thispic.width + "px";
thispic.style.width = maxWidth + "px";
}
}
}
document.oncopy=function(){return false;};