zrzy123456 中文文档教程
安装
npm install gxzrzy
导入
const gxzrzy = require('gxzrzy')
格式化时间
// 调用 dateFormat 对时间进行格式化
const dtStr = gxzrzy.dateFormat(new Date())
// 结果 2020-04-03 17:20:58
console.log(dtStr)
转义 HTML 中的特殊字符
// 带转换的 HTML 字符串
const htmlStr = '<h1 title="abc">这是h1标签<span>123 </span></h1>'
// 调用 htmlEscape 方法进行转换
const str = itheima.htmlEscape(htmlStr)
// 转换的结果 <h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>
console.log(str)
还原 HTML 中的特殊字符
// 待还原的 HTML 字符串
const str2 = gxzrzy.htmlUnEscape(str)
// 输出的结果 <h1 title="abc">这是h1标签<span>123 </span></h1>
console.log(str2)
开源协议
ISC
更多
你可能也喜欢
- 701i-random-messages 中文文档教程
- @404-software/eslint-config 中文文档教程
- @aaquibbot/index 中文文档教程
- @abacus-insights/fhir-works-on-aws-interface 中文文档教程
- @aboll/svelte-dialog 中文文档教程
- @abradley2/cycle-effects 中文文档教程
- @abskmj/jwt-utility 中文文档教程
- @acala-network/bodhi 中文文档教程
- @accurat/event-utils 中文文档教程
- @acot/acot-preset-wcag 中文文档教程