私はウェブページを非常にネイティブにしようとしています。選択を削除するには、Webページのすべてのプロパティを選択しますか?
質問する
60254 次
6 に答える
99
CSSですべての要素の選択を無効にする
body {
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
これは、Chrome、Safari、Firefox、IE 10、およびiOSデバイスでサポートされています。MDNページの詳細。
編集: Firefoxで選択可能な状態を維持したい場合は、次を追加し<input>
ます。<textarea>
input,
textarea {
-moz-user-select: text;
}
jQueryでコンテキストメニューを無効にする
$(document).on("contextmenu", function (event) { event.preventDefault(); });
于 2012-09-07T09:55:57.753 に答える
8
このコードを使用してくださいhttps://www.docsity.com/it/teorie-e-pratiche-del-web-4/556038/
body, html{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
于 2014-09-12T06:41:30.483 に答える
3
このJavaScriptは、コンテンツの選択、コピー、貼り付けを無効にしますが、ユーザーがページをローカルマシンに保存すると、コードで「何でも」実行できるようになります。
//disable cut copy past
var message = "";
function clickIE() { if (document.all) { (message); return false; } }
function clickNS(e) {
if(document.layers || (document.getElementById && !document.all)) {
if (e.which == 2 || e.which == 3) { (message); return false; }
}
}
if (document.layers)
{ document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clickNS; }
else { document.onmouseup = clickNS; document.oncontextmenu = clickIE; }
document.oncontextmenu = new Function("return false")
//for disable select option
document.onselectstart = new Function('return false');
function dMDown(e) { return false; }
function dOClick() { return true; }
document.onmousedown = dMDown;
document.onclick = dOClick;
于 2013-02-27T16:10:28.237 に答える
1
bodyタグに属性を追加することで無効にできますoncontextmenu="return false;
<body oncontextmenu="return false;">
于 2012-09-07T09:38:33.903 に答える
-1
これがあなたを助けますように
<div onselectstart="return false;" style="-moz-user-select: none;">
于 2012-09-07T09:42:09.467 に答える
-1
element_name{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
于 2017-05-29T08:04:40.157 に答える