| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- export function unescape(html) {
- return html
- .replace(html ? /&(?!#?\w+;)/g : /&/g, '')
- .replace(/</g, "<")
- .replace(/>/g, ">")
- .replace(/"/g, "\"")
- .replace(/'/g, "\'")
- .replace(/nbsp;/g,"\u00a0")
- .replace(/&/g,"")
- }
- /**
- * 反转义html
- * @param html
- * @returns {*}
- */
- export function unescapeHtml(html) {
- return html
- .replace(html ? /&(?!#?\w+;)/g : /&/g, '')
- .replace(/</g, "<")
- .replace(/>/g, ">")
- .replace(/"/g, "\"")
- .replace(/'/g, "\'")
- .replace(/nbsp;/g,"\u00a0")
- .replace(/&/g,"")
- }
- /**
- * 转义html
- * @param html
- * @returns {*}
- */
- export function escapeHtml(html) {
- return html
- .replace(/&/g, '&')
- .replace(/</g, '<')
- .replace(/"/g, '"')
- .replace(/'/g, "'")
- .replace(/>/g, '>')
- .replace(/\u00a0/g,"nbsp;")
- }
|