当附加<详细信息>时元素到带有innerHTML的div,div会“向下”移动也

发布于 2024-11-24 17:54:58 字数 568 浏览 1 评论 0原文

通过此处的示例可以轻松描述该问题。

代码如下:

HTML:

<div id="example">Hello </div>

JS:

document.getElementById('example').innerHTML += '<details style="display: inline"><summary>World</summary>Something</details>';

问题是,当我单击“World”时,会出现“Something”,但“Hello”也会下降,如下所示:

在此处输入图像描述

我希望当您单击“World”时,“Hello”保持在原位。

有什么建议吗?提前致谢!

The problem is easily pictured with an example here.

The code goes like this:

HTML:

<div id="example">Hello </div>

JS:

document.getElementById('example').innerHTML += '<details style="display: inline"><summary>World</summary>Something</details>';

The problem is that when I click on "World", "Something" appears but "Hello" also goes down, like this:

enter image description here

I would like that when you click on "World", "Hello" stays in position.

Any suggestions? Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笑饮青盏花 2024-12-01 17:54:58

#example 设置 vertical-align: top 似乎得到了我认为你想要的布局。 HTML:

<div id="example">Hello <details><summary>World</summary>Something</details></div>

和 CSS:

#example {
    vertical-align: top;
}
details {
    display: inline;
}

最后,必要的小提琴: http://jsfiddle.net/ambigously/cJPRz /

Setting vertical-align: top for #example seems to get the layout that I think you want. The HTML:

<div id="example">Hello <details><summary>World</summary>Something</details></div>

And the CSS:

#example {
    vertical-align: top;
}
details {
    display: inline;
}

And, finally, the obligatory fiddle: http://jsfiddle.net/ambiguous/cJPRz/

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