摘要: isFinite() 函数可确定数字是否是有限的合法数字。 语法 isFinite(value) 返回值:布尔值。如果值为 +infinity、-infinity 或 NaN,则返回 false,否则返回 true。 阅读全文
posted @ 2022-02-18 14:54 向前、向前 阅读(211) 评论(0) 推荐(0) 编辑
摘要: HTML 表单验证也可以通过浏览器来自动完成。 如果表单字段 (fname) 的值为空, required 属性会阻止表单提交: 实例 <form action="demo_form.php" method="post"> <input type="text" name="fname" requir 阅读全文
posted @ 2022-02-18 13:59 向前、向前 阅读(171) 评论(0) 推荐(0) 编辑
摘要: JavaScript 中,函数及变量的声明都将被提升到函数的最顶部。 JavaScript 中,变量可以在使用后声明,也就是变量可以先使用再声明。 以下两个实例将获得相同的结果: 实例 1 x = 5; // 变量 x 设置为 5elem = document.getElementById("dem 阅读全文
posted @ 2022-02-18 11:29 向前、向前 阅读(28) 评论(0) 推荐(0) 编辑
摘要: import pyperclip pyperclip.copy('The text to be copied to the clipboard.') pyperclip.paste() # 'The text to be copied to the clipboard.' print(f"我是复制的 阅读全文
posted @ 2022-02-17 16:21 向前、向前 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 1.int() 向下取整 内置函数 1 n = 3.75 2 print(int(n))>>> 3 3 n = 3.25 4 print(int(n))>>> 3 2.round() 四舍五入 内置函数 1 n = 3.75 2 print(round(n))>>> 4 3 n = 3.25 4 p 阅读全文
posted @ 2022-02-16 14:12 向前、向前 阅读(1689) 评论(0) 推荐(0) 编辑
摘要: 一元运算符 + Operator + 可用于将变量转换为数字: 实例 var y = "5"; // y 是一个字符串var x = + y; // x 是一个数字 如果变量不能转换,它仍然会是一个数字,但值为 NaN (不是一个数字): 实例 var y = "John"; // y 是一个字符串 阅读全文
posted @ 2022-02-15 14:02 向前、向前 阅读(40) 评论(0) 推荐(0) 编辑
摘要: constructor 属性 constructor 属性返回所有 JavaScript 变量的构造函数。 实例 "John".constructor // 返回函数 String() { [native code] }(3.14).constructor // 返回函数 Number() { [n 阅读全文
posted @ 2022-02-15 13:53 向前、向前 阅读(102) 评论(0) 推荐(0) 编辑
摘要: //获取俩个间的随机数 function getRandomNumberByRange(start, end) { //获取0-1之间的随机数 //var num = Math.random(); return Math.floor(Math.random() * (end - start) + s 阅读全文
posted @ 2022-02-15 11:47 向前、向前 阅读(528) 评论(0) 推荐(0) 编辑
摘要: Number类定义的toFixed()方法:这个方法可以指定小数点后的位数 阅读全文
posted @ 2022-02-15 11:32 向前、向前 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 定义和用法 用本地特定的顺序来比较两个字符串。 语法 stringObject.localeCompare(target)//target:要以本地特定的顺序与 stringObject 进行比较的字符串。 返回值 说明比较结果的数字。如果 stringObject 小于 target,则 loca 阅读全文
posted @ 2022-02-15 10:12 向前、向前 阅读(253) 评论(0) 推荐(0) 编辑