Mootools - 如何在开头附加文本

发布于 2024-11-28 05:08:27 字数 244 浏览 0 评论 0原文

如何使用函数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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

定格我的天空 2024-12-05 05:08:27

如果您阅读文档,我相信您可以使用以下方法实现它:

$('myElement').appendText(' Howdy. ','top');

它会产生this

使用 'before' 将在

标签:

<body>
   Howdy. <div id="myElement">Hey.</div>
</body>

使用 'top' 将在开始

标记之后立即附加第一个参数:

<body>
  <div id="myElement"> Howdy. Hey.</div>
</body>

If you read the documentation I believe you can achieve it using the following:

$('myElement').appendText(' Howdy. ','top');

which produces this

Using 'before' will append the first param immediately before the <div /> tags:

<body>
   Howdy. <div id="myElement">Hey.</div>
</body>

Using 'top' will append the first param immediately after the opening <div> tag:

<body>
  <div id="myElement"> Howdy. Hey.</div>
</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文