有人可以帮我解决以下问题:
我正在尝试使用 Google 的 Appscript 构建一个包含许多页面的网站。但我不知道如何使用按钮重定向到这些页面。显然这将是一个 Javascript 代码。我正在尝试使用该addEventListener
功能。
<body>
<div class='container'>
<h1>Welcome to the Ticket Tracker!</h1>
<input id='my_input' placeholder="Recipient's Email"><br>
<input id='my_input_fname' placeholder="First Name"><br>
<input id='my_input_fname' placeholder="Last Name"><br>
<button id='my_button_new_ticket'>NEW TICKET</button>
<button id='my_button_update_ticket'>SEARCH TICKET</button>
<p id='my_paragraph'></p>
<script>
document.getElementById('my_button_new_ticket').addEventListener('click', _ => {
window.location.href='index.html'
</script>
</div>