HTML 字符串到元素 mootools
我正在寻找一种以字符串形式创建元素的方法,例如这不起作用:
$('some').adopt('<span>test</span>');
您必须使用 new Element
但我有一个巨大的 html 字符串。我可以这样做:
new Element('div', {html: hugeHtmlString});
但这是错误的。为什么不能像 jquery 中那样简单
I'm looking for a way to create elements form string eg this doesnt work:
$('some').adopt('<span>test</span>');
you must use new Element
but i have a huge html string. I could do this:
new Element('div', {html: hugeHtmlString});
but its so wrong. why can't it be as simple as it is in jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://mootools.net/docs/more/Element/Elements.From
做这份工作
http://mootools.net/docs/more/Element/Elements.From
does the job
以下线程提出了许多解决方案:
http://mootools-users.660466.n2.nabble.com/Moo-New-element-from-html-string-td3557543.html
The following thread proposes a number of solutions:
http://mootools-users.660466.n2.nabble.com/Moo-New-element-from-html-string-td3557543.html