我想显示一个图像gallary,为此,我只需要输入一个js脚本,我必须链接到一个特定的js-link。这不是问题,它工作正常,但当我点击我链接到js的图像时,它会被选中,就像我试图复制它一样,就像我对文本一样。我该如何预防?
编辑:刚刚看到它只是在Dreamweaver中选择了图片,所以它在我的浏览器中运行正常,但如果有人确实遇到了问题,请随时阅读以下答案。
答案 0 :(得分:1)
您可以使用CSS:
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: moz-none;
-ms-user-select: none;
user-select: none;
答案 1 :(得分:0)
这可能是你想要的......我想...... http://www.htmlforums.com/showpost.php?s=036e4d900055ebc4446548d66536e4f1&p=785058&postcount=2
<style>
img{
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
</style>
您也可以使用“不可选”属性,但并非所有浏览器都支持它。
<img src="img.jpg" unselectable="on">