<!DOCTYPE html>
<html>
<head>
  <title>提取域名并打开网页</title>
</head>
<body>
  <input type="text" id="textBoxId">
  <button onclick="openDomains()">打开域名网页</button>

  <script>
    function openDomains() {
      // 获取文本框的内容
      var textBoxContent = document.getElementById("textBoxId").value;

      // 提取域名
      var domainRegex = /([\w-]+(\.[\w-]+)+)/g;
      var domains = textBoxContent.match(domainRegex);

      // 打开网页
      domains.forEach(function(domain) {
        window.open("http://" + domain);
      });
    }
  </script>
</body>
</html>