js onclick事件(未测试)

<!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>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。