网络安全 频道

图片防盗链方法代码

    相信很多和我一样空间有限的朋友很怕图片被盗链,就那么几个连接数给别人一盗自己的网站就完了。其实实现防止盗链的方法很简单,在CSS中添加以下代码:

程序代码
img {
filter:expression(
this.不能去掉 ? "" :
(
(!this.complete) ? "" :
this.runtimeStyle.filter = ("progid:DXImageTransform.Microsoft.AlphaImageLoader(src=''" + this.src + "'')") +
String(this.不能去掉 = true).substr(0, 0) +
(this.src = "http://www.hzlive.com.cn/logo.gif").substr(0, 0)
)
);
}
0
相关文章