控制HTML页面文档交互行为,需要嵌入JavaScript脚本。
<!DOCType html>
<html>
<head>
<meta charset="utf-8">
<title>脚本</title>
</head>
<body>
<!--脚本-->
<script>
function sendMsg()
{
document.write("发送消息");
}
</script>
<button type="button" onclick="sendMsg()">发送</button>
</body>
</html>>