我正在尝试在javascript中识别对象。我的问题是,msie DOM节点不是任何Object后代的实例,因此我无法在这样的实例上设置或获取属性。我正在尝试使用htc行为为此做一个解决方法(只有具有样式的节点可以有行为,所以这是一个半解决方案,但总比没有好):
identity.htc:
<PUBLIC:COMPONENT>
<script type="text/javascript">
for(property in Object.prototype)
{
element[property]=Object.prototype[property];
}
</script>
</PUBLIC:COMPONENT>
的test.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>javascript identity workaround</title>
<!--[if IE]>
<style type="text/css">
*{behavior:url(identity.htc)}
</style>
<![endif]-->
<script type="text/javascript">
(function ()
{
var i=0;
var table={};
Object.prototype.identity=function ()
{
if (!this.__hashcode__)
{
this.__hashcode__=++i;
table[i]=this;
}
return this.__hashcode__;
};
Object.identify=function (i)
{
return table[i];
};
})();
window.onload=function ()
{
var body=document.getElementsByTagName("body")[0];
var existingElement=document.getElementById("existingElement");
var newElement=document.createElement("div");
newElement.addBehavior("identity.htc");
alert(body.identity()); //1
alert(existingElement.identity()); //2
alert(newElement.identity()); // expected: 3, real: method not supported
};
</script>
</head>
<body>
<div id="existingElement"></div>
</body>
</html>
我的问题是,我不能在新创建的元素上使用identity方法。我尝试使用addBehavior方法添加行为,但它没有帮助。有人为此解决了问题吗?
答案 0 :(得分:0)
我得到了解决方案:
<PUBLIC:COMPONENT lightWeight="true">