2022年11月16日

js定义函数的三种方法及区别

摘要: 1 函数定义: 2 function test(){}; 3 函数表达式|匿名函数 4 var test = function(){}; 5 构造函数 6 var test=new Function('a','b', '函数体'); function test(a,b) { console.log( 阅读全文

posted @ 2022-11-16 11:45 SE7EN_96 阅读(143) 评论(0) 推荐(0) 编辑

记input限定输入值为数字留两位小数的正则

摘要: onkeyup="value=value.replace(/[^\d{1,}\.\d{1,}|\d{1,}]/g,'')" 阅读全文

posted @ 2022-11-16 09:17 SE7EN_96 阅读(268) 评论(0) 推荐(0) 编辑

导航