如何计算JavaScript中变量占用的内存?
我想知道是否有类似$html = '';
if ($edit == 1) {
$html .= '<td align="center"><a href="editor/editor.php?id=' . $row["id"] . '" onclick="handleLinkClick(event);">Edit</a></td>';
$html .= '<td align="center"><a href="removedoc.php?id=' . $row["id"] . '" onclick="swalremove(event);">Remove</a></td>';
}
echo $html;
的操作。