
js 基础管理
js 基础管理
weixin_43475507
这个作者很懒,什么都没留下…
展开
-
CSS3缩放scale()示例代码
【代码】CSS3缩放scale()示例代码。原创 2023-08-02 18:31:52 · 257 阅读 · 0 评论 -
js 正则表达式替换HTML标签以及空格( ;)
function replaceHtmlTags(text) { var reg = /<[^<>]+>/g;//1、全局匹配g肯定忘记写,2、<>标签中不能包含标签实现过滤HTML标签 text = text.replace(reg, '');//替换HTML标签 text = text.replace(/ /ig, '');//替换HTML空格 return text;};html 代码<html>原创 2021-11-17 17:23:14 · 2206 阅读 · 1 评论