电脑软硬件应用网
当前位置: 电脑软硬件应用网 > 设计学院 > 网页设计 > 正文
彻底去掉动易内容页顶部的“改变图片大小”代码
彻底去掉动易内容页顶部的“改变图片大小”代码
2010-5-24 8:02:33  文/whoisqq   出处:动易   

当对网站的代码要求越来越高的时候,你就想彻底去掉内容页以下代码

以下内容为程序代码:

<script language="JavaScript"> 
<!-- 
//改变图片大小
function resizepic(thispic) 

return true;

//无级缩放图片大小
function bbimg(o)
{
return true;
}
-->
</script>

教程的方法是:

找到Admin\Admin_Template.asp 第3859行 ,把以下代码:


以下内容为程序代码:

 '解决正文页用户删除图片js 问题 
strPhotoJs = "<script language=""JavaScript"">" & vbCrLf 
strPhotoJs = strPhotoJs & "<!--" & vbCrLf
strPhotoJs = strPhotoJs & "//改变图片大小" & vbCrLf
strPhotoJs = strPhotoJs & "function resizepic(thispic)" & vbCrLf
strPhotoJs = strPhotoJs & "{" & vbCrLf 
'strPhotoJs = strPhotoJs & "if(thispic.width>700) thispic.width=700;" & vbCrLf 
strPhotoJs = strPhotoJs & " return true;" & vbCrLf 
strPhotoJs = strPhotoJs & "}" & vbCrLf 
strPhotoJs = strPhotoJs & "//无级缩放图片大小" & vbCrLf 
strPhotoJs = strPhotoJs & "function bbimg(o)" & vbCrLf
strPhotoJs = strPhotoJs & "{" & vbCrLf 
'strPhotoJs = strPhotoJs & " var zoom=parseInt(o.style.zoom, 10)||100;" & vbCrLf 
'strPhotoJs = strPhotoJs & " zoom+=event.wheelDelta/12;" & vbCrLf 
'strPhotoJs = strPhotoJs & " if (zoom>0) o.style.zoom=zoom+'%';" & vbCrLf 
strPhotoJs = strPhotoJs & " return true;" & vbCrLf 
strPhotoJs = strPhotoJs & "}" & vbCrLf 
strPhotoJs = strPhotoJs & "-->" & vbCrLf
strPhotoJs = strPhotoJs & "</script>" & vbCrLf 
strPhotoJs = strPhotoJs & "</head>" & vbCrLf 
 
If TemplateType = 3 Then 
If InStr(Content, "resizepic(thispic)") <= 0 Or InStr(Content, "bbimg(o)") <= 0 Then
Content = Replace(Content, "</head>", strPhotoJs) 
End If 
End If

替换为:

以下内容为程序代码:

strPhotoJs = strPhotoJs & "</head>" & vbCrLf

然后上传修改过的文件,再回到后台修改内容页的模版看看,是不是不会自动加入任何代码了呢? :)

  • 上一篇文章:

  • 下一篇文章:
  • 最新热点 最新推荐 相关文章
    页面自动跳转的几种实现方法
    网站内容的四种分类形式 或多或少的…
    如何指定规范网页?rel="canonical"
    浅谈网站评论体系设计的不足之处
    网页中“上一篇”“下一篇”设计思考
    网页设计进度指示器帮助用户预测步骤
    网页用户体验:网页注册表单设计分析
    网页设计常出现8大问题
    网页设计的形象思维归纳
    网站优化教程:对robots.txt的优化
    关于45IT | About 45IT | 联系方式 | 版权声明 | 网站导航 |

    Copyright © 2003-2011 45IT. All Rights Reserved 浙ICP备09049068号