- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我们都知道,一旦发布图像,您就无法真正保护它们,但取笑外行人还是很有趣的。我添加了一个脚本来防止右键单击,并试图随机化有趣的消息......它不起作用。
脚本:
// BACKGROUND IMAGES
try {
document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
// no right click
var message=["That doesn't belong to you! Put the mouse down and no one gets hurt!";
"Oh, you again. We of the internet have chosen to defy you!";
"How would you like it if I walked into your house and tried to help myself to your furniture?";
"Hey that tickles!"
"Thief! You are being directed to the... nah just kidding. Enjoy!"]
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
我忘记了什么?看起来应该可以。当我删除 [ 和 ] 并将其减少为一条消息时,该消息工作得很好。当我添加额外的内容并尝试将其随机化时,就会出现问题。
最佳答案
您正在向整个阵列发出警报。
如果您想要随机消息,您可以执行以下操作:
var rn = Math.floor(Math.random() * message.length);
alert(message[rn]);
这会根据数组中的消息数生成一个随机数。
关于javascript - 随机无右键单击消息不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21053224/
我有点困惑。在 : http://delphi.about.com/od/objectpascalide/l/blvkc.htm 它说“Space”的正确键是#20。试过了,但行不通。但是,将其替换为
我有一个 input 的 type="submit" 并且我希望当我点击(右键或左键点击)它时这个元素周围没有蓝色边框。 我在下面的chrome浏览器中添加了OK模式和not OK模式的图片: OK模
我想在右键单击选项卡标题时显示上下文菜单条。 但是,我没有找到检测选项卡标题点击的方法。 有人知道如何做到这一点吗? 最佳答案 Private Sub tab1_MouseClick(sender A
我对编程还很陌生,正在尝试制作扫雷 GUI。游戏完美地右键单击 JToggleButton,在按钮上显示了一个代表炸弹的“B”,但是当我在鼠标监听器中用 setIcon() 替换 setText()
我正在尝试将一个按钮 float 到卡片的右侧。我希望它出现在右下角。 当我正确使用 float 时。它出现在父 div 之外,有没有办法正确定位它?
我正在使用 Struts2 标签和下面的代码使用 JS 计算并检查/验证在文本字段中输入的值。 它还会更新在 textfield 中输入的总数列表,这些由 onblur 处理和 onkeydown事件
我是一名优秀的程序员,十分优秀!