x
 
<!DOCTYPE html>
<html>
<body>
<h1>Window 对象</h1>
<h2>name 属性</h2>
<p id="demo"></p>
<script>
<script>
const otherWindow = window.open();
otherWindow.name = "Butterfly";
</script>
<a href="http://www.w3school.com.cn/js/" target="Butterfly">此链接将在新标签页中打开。</a>
</body>
</html>