如何在单击按钮时刷新标记

时间:2018-02-08 07:54:35

标签: javascript jquery html google-apps-script

我想在点击按钮时刷新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>

0 个答案:

没有答案