gpt4 book ai didi

javascript - 如何将 2
转载 作者:行者123 更新时间:2023-11-28 01:10:18 25 4
gpt4 key购买 nike

<table id="test">
<tbody>
</tbody>
</table>

<script>

str="<tr><td>3<weeks<=9</td></tr>";
$('#test tbody').html('str');

</script>

输出来了:3 作为表格中的一列,因为 '<' 将被视为 html 标记。如何解决这个问题。我想在表中填充 3<周<=9

最佳答案

使用 &lt; (或 &#60; )对于lessthan(<)符号

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="test">
<tbody>
</tbody>
</table>

<script>
str = "<tr><td>3&lt;weeks&lt;=9</td></tr>";
// --^-- --^--
$('#test tbody').html(str);
</script>

引用:http://www.w3.org/TR/html4/sgml/entities.html


或者您可以使用 jQuery 通过使用 jQuery 生成元素来完成这项工作。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="test">
<tbody>
</tbody>
</table>

<script>
$('<tr>', {
html: $('<td>', {
text: '3<weeks<=9'
})
}).appendTo('#test tbody');
</script>

关于javascript - 如何将 2<weeks<9 从 javascript 填充到 html 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37951555/

25 4 0

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