gpt4 book ai didi

javascript - Bootbox 将 DIV 标签移到表外

转载 作者:行者123 更新时间:2023-11-30 16:01:13 25 4
gpt4 key购买 nike

我正在使用 Bootbox 来显示模式。

使用 JS,我正在创建一个字符串作为消息:

display = "<b>Notes</b>";
display += "<br><br>";

display += "<table class='table' id='notes-table'>";
display += "<div>";
display += "<tr><td>";
display += "...";
display += "</td></tr>";
display += "</div>";
display += "</table>";

然后我调用模态:

bootbox.alert( {
message: display,
buttons: {
ok: {
label: 'Close'
}
}
//Example.show("Hello world callback");
});

在控制台中记录 display,我得到:

<b>Notes</b><br><br><table class='table' id='notes-table'><div><tr><td>...</td></tr></div></table>

但是,当我检查 DOM 时,我得到:

<b>Notes</b>
<br>
<br>
<div></div>
<table class='table' id='notes-table'>
<tbody>
<tr>
<td>...</td>
</tr>
</tbody>
</table>

为什么 DIV 标签不再包裹表格?

最佳答案

发生这种情况是因为将 <div>直接在 <table> 内标记标记不是有效的 HTML 结构,因此浏览器将自动纠正并通过放置 <div> 返回有效表达式标记出表格。

希望这对您有所帮助。

关于javascript - Bootbox 将 DIV 标签移到表外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37702133/

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