为什么
<html>
<head>
</head>
<body oncontextmenu="hidencontext()">
<script>
function hidencontext()
{
  return false;
}
</script>
</body>
</html>
而下面的却可以屏蔽右键图文
<html>
<head>
</head>
<body oncontextmenu="return hidencontext()">
<script>
function hidencontext()
{
  return false;
}
</script>
</body>
</html>
仅一词之差而已,我想知道其中的原因!请达人指点!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!