本文作者: jsweibo
本文链接: https://jsweibo.github.io/2019/09/30/%E4%BB%80%E4%B9%88%E6%98%AFUnderscore/
摘要
本文主要讲述了:
- 什么是 Underscore
- 规格
- 示例
正文
什么是 Underscore
Underscore 是一个开源的 JavaScript 的实用程序库。
Underscore 的初始版本由 Jeremy Ashkenas 于 2009 年 10 月 28 日发布。
规格
UMD
示例
示例:版本号
1 | const _ = require('underscore'); |
示例:小脚本标签
1 | const _ = require('underscore'); |
输出:
1 | <div>hello, jsweibo</div> |
示例:不转义就输出
1 | const _ = require('underscore'); |
输出:
1 | <div><script>alert(new Date());</script></div> |
示例:转义后再输出
1 | const _ = require('underscore'); |
输出:
1 | <div><script>alert(new Date());</script></div> |
参考资料
本文作者: jsweibo
本文链接: https://jsweibo.github.io/2019/09/30/%E4%BB%80%E4%B9%88%E6%98%AFUnderscore/
本文对你有帮助?请支持我
- 本文链接: https://jsweibo.github.io/2019/09/30/%E4%BB%80%E4%B9%88%E6%98%AFUnderscore/
- 版权声明: 除非另有说明,否则本网站上的内容根据署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 进行许可。