我想在点击按钮时刷新div标签或表格。只需刷新它,以便记录在屏幕上更新。我不知道我如何编码它。我搜索但我没有得到这些代码。
HTML
<html>
<head>
<base target="_top">
<script>
</script>
</head>
<body>
<div id="tables">
<? var data = getData();?>
<table id="tableShift1">
<caption>Shift1</caption>
<th> ID </th>
<th> Ldap </th>
<th> Action </th>
<? for (var dataList = 1; dataList < data.length; dataList++) {
if (data[dataList][2] == '') {?>
<tr >
<td><?= data[dataList][0] ?></td>
<td><?= data[dataList][1] ?></td>
<td><button onclick='google.script.run.setApproved("<?=data[dataList][0]?>")' id='btnLdap'>Approve</button></td>
</tr>
<? }
} ?>
</table>
</div>
</body>
<script>
</script>
</html>