实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function changeTarget()
6
{
7
document.getElementById('w3s').target="_blank";
8
}
9
</script>
10
</head>
11
12
<body>
13
<a id="w3s" href="">Visit W3Cschool</a>
14
<br><br>
15
<input type="button" onclick="changeTarget()" value="Change target">
16
17
<p>Try the link before and after you have pressed the button!</p>
18
19
</body>
20
</html>
21