作者 anyv
1 个管道 的构建 通过 耗费 0 秒

1

... ... @@ -21,7 +21,7 @@
<!-- 输入金额 -->
<input class="tx_maskInput" type="text" placeholder="输入提现金额" id="money" onblur="messagess()"/>
<!-- 确定 -->
<div class="tx_maskOk">确定</div>
<div class="tx_maskOk" onclick="sure_to()">确定</div>
<!-- 提现说明 -->
<div class="tx_maskTxt">
<div class="tx_maskTxt1">
... ... @@ -138,7 +138,18 @@
*当光标离开
*/
function messagess(){
alert(1111);
money = $('#money').val();
if(money < 0){
alert('提现金额错误');
}else if(money>{$balance}){
alert('提现金额额超出余额');
}
}
/**
*点击确认时
*/
function sure_to(){
money = $('#money').val();
if(money < 0){
alert('提现金额错误');
... ...