javascript expando

document.expando用于设置或获取表明是否可对象内创建任意变量的值。

一般情况下,在一个html页面,你可以给任意节点增加自己的属性,或者给默认属性设置值。
但如果你使用了:
document.expando = false;//默认是true

那么你在页面里面标签配置的默认属性之外的其他属性都将视为无效。


The property is read/write. The property has a default value of true

<HTML>
<HEAD>
<SCRIPT>
//Set the expando property to false.
document.expando = false;
</SCRIPT>
</HEAD>
<BODY>
    <DIV>
      <SPAN id="oSpan" unselectable="on">
      This text should be selectable.</SPAN>
    </DIV>
</BODY>
</HTML>


你可能感兴趣的:(javascript expando)