javascript-Mootools元素转换为HTML
作者:互联网
我的问题很简单..我需要将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');
标签:mootools,dom,javascript,object-to-string 来源: https://codeday.me/bug/20191101/1981664.html