使用文本框完成URL,并在新选项卡中打开该URL,可以通过以下步骤实现:
<input>
元素创建一个文本框,和一个HTML <button>
元素作为打开URL的按钮。getElementById()
方法获取文本框元素,并使用 value
属性获取文本框的值。addEventListener()
方法监听按钮的点击事件,并在函数中编写打开URL的逻辑。window.open()
方法打开URL。将获取到的URL作为参数传递给 window.open()
方法,可以在新选项卡中打开该URL。以下是一个示例的HTML和JavaScript代码:
<!DOCTYPE html>
<html>
<head>
<title>打开URL</title>
</head>
<body>
<input type="text" id="urlInput" placeholder="输入URL">
<button id="openButton">打开</button>
<script>
var openButton = document.getElementById("openButton");
openButton.addEventListener("click", function() {
var urlInput = document.getElementById("urlInput");
var url = urlInput.value;
window.open(url, "_blank");
});
</script>
</body>
</html>
这样,用户就可以在文本框中输入URL,点击按钮后在新选项卡中打开该URL。在实际应用中,可以根据需要进行界面美化和功能优化。
领取专属 10元无门槛券
手把手带您无忧上云