$(document).ready(function() {
$("td").filter(function() {
if($(this).text() === "No") {
$(this).parent().hide();
}
});
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<table class="data-table" id="product-attribute-specs-table">
<col width="25%" />
<col />
<tbody>
<tr>
<th class="label">Zusatz-Info</th>
<td class="data" data-flag="No">No</td>
</tr>
<tr>
<th class="label">Info</th>
<td class="data" data-flag="Nothing">Nothing</td>
</tr>
</tbody>
</table>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</body>
</html>
试试这个:
$(document).ready(function() {
$("td").filter(function() {
if($(this).text() === "No") {
$(this).text('');
$(this).parent().hide();
}
});
});