摘要:
或运算符练习 https://blog.csdn.net/kuafu888/article/details/121666845 与运算练习 https://blog.csdn.net/kuafu888/article/details/121667103 三元运算符 1 // 三元运算符 2 var 阅读全文
摘要:
页面加载 http://mayunteng888.025web.cn/11-24-1.html 指定元素模拟 http://mayunteng888.025web.cn/11-24-2.html 阅读全文
摘要:
2021-11-15小练习01、事件委托用递归实现指定标签http://mayunteng888.025web.cn/2021-11-15-1.html02、计算输入的字符串长度http://mayunteng888.025web.cn/2021-11-15-2.html03、牛逼的自己封装的切换插 阅读全文
摘要:
//test1.php <?php setcookie("user[name]","admin",time()+600); setcookie("user[pw]","123456",time()+600); setcookie("user[city]","china",time()+600); e 阅读全文
摘要:
留笔纪念 $sql = 'SELECT * FROM `body` where `id`>:id'; $s=$dns->prepare($sql); $s->execute([id=>0]); $newresult =$s->fetch(PDO::FETCH_ASSOC); print_r($new 阅读全文
摘要:
function $(id){return typeof id "string" ? document.getElementById(id) : id;} 阅读全文
摘要:
html代码 <div> <label for="userid">ID</label> <input type="text" id="userid"> <button id="submit">查询</button> </div> <div id="show"> </div> <script> var 阅读全文
摘要:
switch练习 <div> <label for="id">ID号</label> <input type="text" id="id" name="id"> <button id="submit">查询</button> </div> <div id="reveal"></div> <scrip 阅读全文
摘要:
最后,将搜索到的那个选项的 √ 去掉 阅读全文
摘要:
<div> <input type="text" id="s"> </div> <script> var s=document.getElementById('s'); addEventListener('keypress',function(ev){ // console.log(ev); if( 阅读全文