条件文本选择禁用

时间:2018-09-24 15:39:38

标签: javascript html conditional

我看到许多帖子确实可以关闭从网站中选择和复制文本的功能。但是我正在努力建立条件选项来关闭此选择。我认为javascript更好?

我在下面尝试了两种不同的方法。

<script type="text/JavaScript">
  function disableselect(e){
    return false
  }
  function reEnable(){
    return true
  }

  document.onselectstart = new Function ("return false")
  if (window.sidebar && not AllowCutPaste){
    document.onmousedown=disableselect
    document.onclick=reEnable
  }
</script>

<% if AllowCutPaste then %>
  <body  onload="unCheckBoth()">
<% else %>
  <body  onload="unCheckBoth();"onselectstart="return false;">
<% end if%>

这就是我如何从另一个asp文件中的一组函数创建变量AllowCutPaste

Sub setCopyPaste

  'This next section sets the permission to copy and select the data shown.                              

  If Cint(Session("Oracle_District")) > 910 and Cint(Session("Oracle_District")) < 917 then

    AllowCutPaste = True
  else
    AllowCutPaste = False
  end if
end sub

0 个答案:

没有答案