随笔分类 -  web

web资料
摘要:function filter(str) { // 特殊字符转义 str += ''; // 隐式转换 str = str.replace(/%/g, '%25'); str = str.replace(/\+/g, '%2B'); str = str.replace(/ /g, '%20'); s 阅读全文
posted @ 2019-12-26 14:13 我非日葵却也向阳 阅读(4764) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/><meta name="viewport" content="width=6 阅读全文
posted @ 2019-12-25 14:50 我非日葵却也向阳 阅读(427) 评论(0) 推荐(0)
摘要:HTML a标签的href 属性 tel 点击可以直接拨打电话 ( 移动端 ) <a href="tel:13828172679">13622178579</a> 阅读全文
posted @ 2019-12-10 18:05 我非日葵却也向阳 阅读(1216) 评论(0) 推荐(0)