javascript
lianghyan
喜欢旅游,不喜欢固定一层不变的生活
展开
-
javascript import export
javascript impor export 小例子原创 2022-06-08 15:34:30 · 125 阅读 · 0 评论 -
javascript 数字输入校验
function onlyNum(event) { if(!(event.keyCode==46)&&!(event.keyCode==8)&&!(event.keyCode==37)&&!(event.keyCode==39)) if(!((event.keyCode>=48&&event.keyCode=96&&event.keyCode原创 2014-11-20 16:39:20 · 509 阅读 · 0 评论 -
键盘的keycode
字母和数字键的键码值(keyCode) 按键 键码 按键 键码 按键 键码 按键 键码 A 65 J 74 S 83 1 49 B 66 K 75 T 84 2 50 C 67 L 76 U 85 3 51 D 68 M 77 V 86 4 52 E 69转载 2014-11-20 15:40:46 · 506 阅读 · 0 评论 -
Javascript apply, call this
function.apply(thisobj, args) thisobj: The object to which function is to be applied. In the body of the function, thisobj becomes the value of the this keyword. If this argument is null, the global原创 2016-05-24 15:40:36 · 314 阅读 · 0 评论 -
房贷计算器
提供了计算等额本息法和等额本金法来计算房贷还款在某月的本金,利息等相关信息原创 2016-06-06 17:27:40 · 1146 阅读 · 0 评论