高級謝謝你的答覆。 我想使用javascript來禁用IE的查看源快捷鍵。 要禁用 「CTRL + C」,我現在用的是followinf功能:如何禁用使用JavaScript的鍵的組合?
function disableCopy() {
// current pressed key
var pressedKey = String.fromCharCode(event.keyCode).toLowerCase();
if (event.ctrlKey && (pressedKey == "c")) {
// disable key press porcessing
event.returnValue = false;
}
}
任何一個可以建議如何禁用 「ALT + V + C」 組合?
你意識到這不會最終阻止人們查看源代碼,如果他們確定,對嗎? – Utkanos 2012-07-11 13:24:17
你想禁用查看HTML源代碼? – Anuraj 2012-07-11 13:24:45
不知道爲什麼downvote。這個問題在概念上可能是有缺陷的,但對於它是什麼而言,它被問得很好,OP顯示了一個代碼嘗試。 +1。 – Utkanos 2012-07-11 13:26:40