摘要:
使用方法3个简单步骤对于其他API调用,看到演示。//显示一个信息没有标题toastr.info('Are you the 6 fingered man?')其他选项/显示一个警告,没有标题toastr.warning('My name is Inigo Montoya. You killed my... 阅读全文
摘要:
//检查金钱格式 $(".text_money").on("blur", function () { $(this).val($.isNumeric($(this).val()) ? $(this).val() : 0); }); ... 阅读全文
摘要:
//检查金钱格式 $(".text_money").on("blur", function () { checkMoney($(this)); }); //检查金钱格式 function checkMoney(text) ... 阅读全文