javascript – Google Script – 补充工具栏按钮会不断打开新标签页
作者:互联网
我正在创建一个非常基本的脚本来帮助我处理我的一个谷歌电子表格.
我已经成功地显示了一个侧边栏,带有几个按钮(功能).但是,每当我点击其中一个按钮时,它也会打开一个新标签,其URL类似于:“https://n-lx3mdv5ls3mdgglsq226llilxd2m4owxy72y3fy-1lu-script.googleusercontent.com/userCodeAppPanel?”
即使按钮没有任何功能,这仍然会发生.
这是html的一个例子:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<!-- The CSS package above applies Google styling to buttons and other elements. -->
<style>
</style>
</head>
<body>
<div class="sidebar">
<form>
<div class="block" id="buttons">
<button id="unindent">Unindent</button>
<button id="indent">Indent</button>
<button id="asdgdgasg">Test</button>
</div>
</form>
</div>
</body>
</html>
如何阻止这个新标签每次打开?
解决方法:
问题:
>< button> type,如果未指定,则默认为type = submit.因此,表单会自动将数据提交给服务器.这在iframe中不是优选的.
解:
>明确指定按钮类型为按钮. < button type ='button'>
>使用event.preventDefault()来阻止自动表单提交.
参考文献:
标签:javascript,forms,google-apps-script,form-submit,web-applications 来源: https://codeday.me/bug/20190923/1814518.html