1.0.0 • Published 3 years ago

itheima-tools-djl v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

安装

npm install itheima-tools-djl

导入

const itheima = ruquire("itheima-tools-djl")

格式化时间

const dtstr = itheima.dateFormat(new Date());
console.log(dtstr);     // 结果2021-09-17 14:03:35

转义HTML中的特殊字符

const htmlStr = '<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>';
// 调用htmlEsccpae()转换
const str = itheima.htmlEsccpae(htmlStr);
console.log(str);   //&lt;h1 title=&quot;abc&quot;&gt;这是h1标签&lt;span&gt;123&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;
// 调用htmlEsccpae()还原
console.log(itheima.htmlUnEsccpae(str)); //<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>