摘要:
// 获取完整的url url = window.location.href; alert(url) 阅读全文
摘要:
let str = 'Aesterday and Today'; let reg = "^[A-Z]"; if (rst = str.match(reg)) { console.log("第一个字符串是大写字母") } else { console.log("第一个字符不是大写字母") } 阅读全文
摘要:
function qwe() { //数组格式的json数据 var sJson = '[{ "name": "小红" , "age":20},{ "name":"小明" , "age":15}, { "name":"小红" , "age":18}]'; // JSON.parse把一个json字符 阅读全文
摘要:
<table id="insert_Row" border="1"> <tr> <td>Row1 cell1</td> <td>Row1 cell2</td> </tr> <tr> <td>Row2 cell1</td> <td>Row2 cell2</td> </tr> </table><br> 阅读全文
摘要:
通过 parseInt(param).toString(2) 进行转换 let a = prompt('请输入十进制数字') function zz(param) { let value = parseInt(param).toString(2); let l = value.length; //获 阅读全文
摘要:
通过 parseInt(param, 2); 进行转换 let a = prompt('请输入二进制数字') function zz(param) { let value = parseInt(param, 2); let l = value.length; //获取要格式化数字的长度,如二进制1的 阅读全文
摘要:
这里是HTML内容 <form> <select id="colorSelect"> <option>Red</option> <option>Green</option> <option>White</option> <option>Black</option> </select> <input 阅读全文