Mootools - 如何在开头附加文本
如何使用函数appendText在开头附加文本?
例如:
HTML:
<div id="myElement">Hey.</div>
JavaScript:
$('myElement').appendText('Howdy. ', 'before');
预期结果:Howdy。嘿。
How to append text at the begin using function appendText?
For example:
HTML:
<div id="myElement">Hey.</div>
JavaScript:
$('myElement').appendText('Howdy. ', 'before');
Expected result: Howdy. Hey.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您阅读文档,我相信您可以使用以下方法实现它:
它会产生this
使用
'before'
将在使用
'top'
将在开始标记之后立即附加第一个参数:
If you read the documentation I believe you can achieve it using the following:
which produces this
Using
'before'
will append the first param immediately before the<div />
tags:Using
'top'
will append the first param immediately after the opening<div>
tag: