gpt4 book ai didi

javascript - 如何使用 javascript 使特定的 div 可选择(复制/粘贴)?

转载 作者:行者123 更新时间:2023-11-28 02:04:49 28 4
gpt4 key购买 nike

当我们已经在 html 页面中有 onselectstart="return false;" 时,有谁知道如何使用 javascript 使特定的 div 可选(复制/粘贴)

    <head>
<script type="text/javascript">

function DisableSelection(){
var srcType = event ? ( event.srcElement ? event.srcElement.tagName: null ) : null;
if(srcType && ( srcType == "text" || srcType == "textarea" ) )
{
return true;
}
return false;

}

</script>
</head>

<body onContextMenu="return false" onselectstart="return DisableSelection();"/>

最佳答案

[DIV].onselectstart="";
[DIV].oncontextmenu="";

编辑:

刚刚意识到这可能是您的页面...

function canSelect(e)
{
e=e?e:event;
if(e.stopPropagation) e.stopPropagation();
else e.cancelBubble=true;
return true;
}

然后使用

[DIV].onselectstart=canSelect;

<div onselectstart="return canSelect(event);">

关于javascript - 如何使用 javascript 使特定的 div 可选择(复制/粘贴)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12154130/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com