01.htm
来自「介绍了javascript的常用的函数」· HTM 代码 · 共 17 行
HTM
17 行
<html>
<head>
<title>单击按钮链接到指定的网页</title>
<script language="javascript">
<!--
function gotoUrl(){
window.location.href = "http://www.google.com";
}
-->
</script>
</head>
<body>
<button onClick="gotoUrl()">
前往Google
</button>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?