我的问题很简单。我需要将 Element 对象转换为 html 字符串
var thumb = new Element('img',{'src':"big.jpg"});
console.log( thumb.?????() ); //some magical method here
应该返回(作为字符串)
'<img src="_big.jpg">'
我试过了,.get('html')
但它什么也没返回,显然是因为 img 标签里面什么都没有。
提前致谢
我的问题很简单。我需要将 Element 对象转换为 html 字符串
var thumb = new Element('img',{'src':"big.jpg"});
console.log( thumb.?????() ); //some magical method here
应该返回(作为字符串)
'<img src="_big.jpg">'
我试过了,.get('html')
但它什么也没返回,显然是因为 img 标签里面什么都没有。
提前致谢
只是代理它。
var html = new Element('div').adopt(yourel).get('html');
你试过outerHTML
吗?我很确定你需要的是:
var html = selector.outerHTML;
从 html 字符串返回元素的集合。