标签:
页面上添加一个按钮,使用传递参数的方法实现单击按钮的时候弹出对话框显示hello world
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
function num(n){
var n1=document.getElementById("btn").value;
alert(n);
}
</script>
</head>
<body>
<input type="button" id="btn" value="按钮" onclick="num(‘HELLO WORLD‘)">
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/rentingting/p/4792960.html