通过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();
}
});
这些方法可以有效地禁止文本选择,但是需要注意的是,这种方法可能会影响用户体验,因此在使用时需要谨慎考虑。
领取专属 10元无门槛券
手把手带您无忧上云