为什么我只是在刚写好程序的时候出现弹窗
我在刚写好程序的时候自动出现弹窗,之后手动点击“点击我”反而不出现弹窗了,为什么呢?
2015-06-09
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<拖一个jQuery mini>
<title>函数调用</title>
<script type="text/javascript">
function context(){
$("#buttion_click").click(function(){
alert("成功");
});
};
</script>
</head>
<body>
<form>
<input type="button" id="buttion_click" value="点击我" />
</form>
</body>
</html>
举报