@ -62,11 +62,11 @@
$(function() {
$("#pay").click(function() {
if (!$("#money").val()) {
if ($("#money").val() == '') {
showerror("金额不能为空");
return ;
}
if (!$("#money").val() <= 0) {
if ($("#money").val() < 0 || $("#money").val() == 0) {
showerror("金额有误");