gpt4 book ai didi

javascript - 使用javascript在特定位置打印文本

转载 作者:行者123 更新时间:2023-12-03 07:03:53 26 4
gpt4 key购买 nike

如何在页面的特定位置打印文本?当我使用 document.write() 时,文本打印在新页面上。

最佳答案

你的问题不是很具体。但是试试这个尺寸:

HTML:

<div>Some content</p>
<div>Some more content</div>
<div id="specificposition"></div>
<div>Even more content</div>

JavaScript:

var target = document.getElementById("specificposition"); // find the list-item

target.innerHTML = "Here I am!"; // set it's content


如果你使用 jQuery ,DOM操作就简单多了。假设我想在下面的无序列表中的第二个列表项之后插入另一个列表项:

HTML:

<ul>
<li></li>
<li></li> <!-- this is the second list-item -->
<li></li>
<li></li>
</ul>

我可以做到(JavaScript/jQuery):

$(function ()
{
// this function gets executed once the DOM is ready for manipulation

var target = $("li:eq(1)"); // get the 2nd list-item in the unordered list

target.after("<li>Here I am!</li>"); // insert a new list-item
});

结果:

<ul>
<li></li>
<li></li> <!-- this is the second list-item -->
<li>Here I am!</li>
<li></li>
<li></li>
</ul>

关于javascript - 使用javascript在特定位置打印文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1415054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com