要实现让4个按钮都打开不同的新页面,你可以按照以下步骤进行操作:
<button id="button1">按钮1</button>
<button id="button2">按钮2</button>
<button id="button3">按钮3</button>
<button id="button4">按钮4</button>
document.getElementById("button1").addEventListener("click", function() {
window.open("https://www.example1.com");
});
document.getElementById("button2").addEventListener("click", function() {
window.open("https://www.example2.com");
});
document.getElementById("button3").addEventListener("click", function() {
window.open("https://www.example3.com");
});
document.getElementById("button4").addEventListener("click", function() {
window.open("https://www.example4.com");
});
window.open()
方法打开一个新的浏览器窗口或标签页,并指定要打开的页面URL。以上代码中的URL示例为https://www.example1.com
、https://www.example2.com
、https://www.example3.com
和https://www.example4.com
,你可以根据实际需求替换为你想要打开的不同页面的URL。
这样,当用户点击每个按钮时,会打开一个新的浏览器窗口或标签页,并跳转到相应的页面。
请注意,以上答案中没有提及特定的云计算品牌商,因为该问题与云计算领域无关。如果你有关于云计算或其他相关主题的问题,欢迎提问。
领取专属 10元无门槛券
手把手带您无忧上云