Hi I found this webpage today: http://www.snopes.com/inboxer/hoaxes/sister.asp

I couldn't figure out how it disable text selection. It's neither the conventional CSS or javascript method. Do anyone know how it disable the text selection?

有帮助吗?

解决方案

Look in the Javascript source:

<!--
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
  if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
    return false
}

function reEnable(){
  return true
}

if (typeof document.onselectstart!="undefined")
  document.onselectstart=new Function ("return false")
else{
  document.onmousedown=disableselect
  document.onmouseup=reEnable
}
-->

When the user attempts to start a selection, onselectstart, it simply returns false, which disables the feature.

其他提示

Try this simple Javascript method.

document.onselectstart = function() { return false; }
document.onmousedown = function() { return false; }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top