0
工作使用Element.update()函數原型:原型Element.update()函數不是在IE
[ ... ]
var link_1 = new Element('a').update('<' );
var link_2 = new Element('a').update('<<');
[ ... ]
只能在IE中我得到:
我如何寫字符串「<」成原型元素?
工作使用Element.update()函數原型:原型Element.update()函數不是在IE
[ ... ]
var link_1 = new Element('a').update('<' );
var link_2 = new Element('a').update('<<');
[ ... ]
只能在IE中我得到:
我如何寫字符串「<」成原型元素?
我會建議使用這些字符的HTML實體而不是實際的字符,因爲它們通常是HTML標記的開始。
所以不是update("<")
嘗試做update("<")
而且update("<<")