去掉当鼠标放到图片上时,出现下载,保存提示的图形工具条

六 24th, 2008

方法一:
下边代码加在前

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

方法二:

<img galleryimg="no">

方法三:定义CSS

<style>
img {
  nobar:expression(this.galleryImg="no");
}
</style>

禁用右键方法

<script language="Javascript">
document.oncontextmenu=new Function("event.returnValue=false");
document.onselectstart=new Function("event.returnValue=false");
</script>
目前还没有任何评论.