gpt4 book ai didi

jquery - 阻止 JQuery .html() 剥离 tr/td 标签

转载 作者:行者123 更新时间:2023-11-28 03:23:22 24 4
gpt4 key购买 nike

我遇到一个问题,其中 .html() JQuery 方法正在剥离我的响应的 tr/td 标签。不太确定从这里去哪里。

响应:

<tr>
<td>
<input value="Blah">
</td>
</tr>

执行所有工作的 JQuery:

$.get(options.addNewLink, function (template) {
alert(template);
obj.find('tbody').append(template);
}

附加到 tbody 的只是“输入”标签。 alert 函数显示所有数据都在那里并且完好无损,所以这就是所有 tr 和 td 元素。它只是在翻译中丢失了。

有什么建议吗?

最佳答案

我无法完全按照问题中的要求重现问题。将该响应放入一个字符串中并附加到一个 tbody 实际上对我来说在 Chrome 72 和 JQuery 1.6(以及 3.3.1)中工作得很好

<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.js"></script>
<script type="text/javascript">
function test() {
var template = '<tr><td><input value="Blah"></td><td>col2</td></tr>';
var obj = $("#myTable");
alert(template);
obj.find('tbody').append(template);
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tbody>
<tr><td>foo</td><td>bar</td></tr>
</tbody>
</table>
<button type="button" onclick="test();">Test</button>&nbsp;
</body>
</html>

话虽如此,首先导致我提出这个问题(并让我认为我的回答可能仍然对其他人发现这个问题有一些小帮助)的是一个非常相似的问题,即试图从 a 中提取一些 tr 元素响应并将它们插入到我页面上的现有表格中,看到所有 tr 和 td 都以 OP 描述的方式被剥离。

我的情况是返回一个包含两组行的响应,一组在 tbody 中,另一组在 tfooter 中,所以我想分别将子节点从 tbody 和 tfooter 复制到它们各自的目标节点中我页面的表格。

这让我首先将响应文本解析为节点,以便能够在其中找到所需的节点子集以提取并复制到我的表中(而不是像 OP 那样直接将其完整附加)。

尝试这样做时,我突然发现在解析响应时所有的 tr,td 都被剥离了。

这是因为我的响应没有用 table 标签包裹它们(所以解决方案是更改响应以用 table 标签(而不是 div)包围它们)然后允许响应成功解析为 html没有 tr,td 剥离。

我怀疑这种剥离是 jquery 如何使用浏览器的 native DOM 内容将 html 字符串解析为实际节点的副作用。当你只是将一个充满 trs 的字符串直接附加到一个 tbody 中时,这很好,因为 trs 属于一个 tbody - 他们和他们的 friend 在一起,一切都是阳光和玫瑰,但是首先解析它们意味着 jquery 在幕后设置它将字符串放入 div 的 innerHTML 中,其中 untabled trs 和 tds 不在他们快乐的地方并且浏览器不喜欢那样。

<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.3.1.js"></script>
<script type="text/javascript">

theBodyPart
= '<tbody id="resultBody">'
+ '<tr><td><input value="Hello"></td><td>World</td></tr>'
+ '<tr><td>abc</td><td>123</td></tr>'
+ '</tbody>';

//An outer node is needed for the jquery find() (because find doesnt include the start node in its search)
badResponse = '<div>' + theBodyPart + '</div>';
goodResponse = '<table>' + theBodyPart + '</table>';

function replaceBody(response) {
var parsedResponse = $( response );
alert('parsedResponse=' + parsedResponse.html()); //<-- you can see the tr, td stripping of badResponse here
//parse the html, search for node, use first result
//(this fails if wrapped in a div instead of a table because the tbody was stripped!)
var resultBody = parsedResponse.find("#resultBody")[0];
if(resultBody) {
$( "#myBody" ).html( $(resultBody).html());
} else {
alert('resultBody not found');
}
}
</script>
</head>
<body>
<table border="1">
<thead>
<tr><th>Foo</th><th>Bar</th></tr>
</thead>
<tbody id="myBody">
<tr><td>old1</td><td>old2</td></tr>
</tbody>
</table>
<button type="button" onclick="replaceBody(badResponse);">Bad</button>&nbsp;
<button type="button" onclick="replaceBody(goodResponse);">Good</button><br/>
<div id="message"></div>
</body>
</html>

但我仍然不知道为什么 OP 失败了,因为他们在执行追加之前没有尝试解析和提取响应!

关于jquery - 阻止 JQuery .html() 剥离 tr/td 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22800363/

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