原型Element.update()函数在IE中不起作用

时间:2014-09-12 21:35:01

标签: javascript internet-explorer prototypejs

使用Element.update()原型函数:

[ ... ]
var link_1 = new Element('a').update( '<'  );
var link_2 = new Element('a').update( '<<' );
[ ... ]

仅在IE中我得到:

'link_1' is not defined

我怎样才能写出字符串“&lt;”进入原型元素?

1 个答案:

答案 0 :(得分:0)

我建议使用这些字符的HTML实体而不是实际字符,因为它们通常是HTML标记的开头。

而不是update("<")尝试update("&lt;")

update("&lt;&lt;")

List of entity replacements