如何将一些 html 添加到页面中的确切位置?
我想弄清楚如何在 :
<p id="sab-contact-tab"><a href="/contact" class="smcf-link"></a></p>
之后添加 :
<div id="footer">
这是我的代码:
jQuery(document).ready(function() {
var prependHTML = "<p id="sab-contact-tab"><a href="/contact" class="smcf-link"></a></p>";
jQuery(prependHTML).prepend("#footer");
});
这段代码正确吗?如果不是,正确的代码是什么?
谢谢,
迈克尔·萨布拉图拉
I am trying to figure out how to add :
<p id="sab-contact-tab"><a href="/contact" class="smcf-link"></a></p>
right after :
<div id="footer">
Here is my code:
jQuery(document).ready(function() {
var prependHTML = "<p id="sab-contact-tab"><a href="/contact" class="smcf-link"></a></p>";
jQuery(prependHTML).prepend("#footer");
});
Is this code correct? if not what is the right code?
Thanks,
Michael Sablatura
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
应该是
或者
Should be
or
您必须使用简单的引号来分隔字符串(因为其中有一些双引号)。
You have to use simple quotes to delimiter your string (because you have some double quotes in it).
在这种情况下,我总是使用
jQuery('#footer').append(appendHTML);
而不是appendTo
但我不认为这在功能上是可行的 有什么不同吗,您发布的代码不起作用吗?In that situation i would always use
jQuery('#footer').append(appendHTML);
rather thanappendTo
but i don't think that would be functionally any different, is the code you posted not working?