通过jQuery禁用文本选择,可以通过以下方法:
$("body").css("-webkit-user-select", "none");
$("body").css("-moz-user-select", "none");
$("body").css("-ms-user-select", "none");
$("body").css("user-select", "none");
function disableTextSelection() {
document.body.addEventListener("mousedown", function(event) {
if (event.ctrlKey) {
event.preventDefault();
}
});
}
disableTextSelection();
$(document).on("mousedown", function(event) {
if (event.ctrlKey) {
event.preventDefault();
}
});
这些方法可以有效地禁止文本选择,但是需要注意的是,这种方法可能会影响用户体验,因此在使用时需要谨慎考虑。
企业创新在线学堂
企业创新在线学堂
云+社区沙龙online [技术应变力]
企业创新在线学堂
云原生正发声
云+社区技术沙龙[第28期]
618音视频通信直播系列
“中小企业”在线学堂
2019腾讯云华北区互联网高峰论坛
技术创作101训练营
领取专属 10元无门槛券
手把手带您无忧上云