码迷,mamicode.com
首页 > Web开发 > 详细

js onclick事件(未测试)

时间:2015-03-10 13:45:03      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>

<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
var Price = 100                                                                                  
function getprice (){
var Getprice = document.getElementById("price").value;
if(Getprice>Price)        //Price !=100
{
alert("余额不足")
};
else{
("正在出钱,等一辈子吧。")
};
}
function Sprice(){
var SPrice = document.getElementById(“price”).value;
Price=parseInt(SPrice)+Price  //变量转换字符串 parseInt()
alert("你一共存了“+SPrice+",余额为"+Price)
}
</head>
<body>
<input type="text" id="price" value=""/>
<input type="button" value="点我取钱" onclick="getprice()"/>
<input type="button" value="点我存钱" onclick="Sprice"/>
</body>
</html>

js onclick事件(未测试)

标签:

原文地址:http://www.cnblogs.com/xanthechum/p/4325615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!