如何将一些 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
应该是
或者
Should be
or