使用Element.update()原型函数:
[ ... ]
var link_1 = new Element('a').update( '<' );
var link_2 = new Element('a').update( '<<' );
[ ... ]
仅在IE中我得到:
'link_1' is not defined
我怎样才能写出字符串“&lt;”进入原型元素?
答案 0 :(得分:0)
我建议使用这些字符的HTML实体而不是实际字符,因为它们通常是HTML标记的开头。
而不是update("<")
尝试update("<")
update("<<")