摘要:
encodeURIComponent() -->把字符串编码为 URI 组件。encodeURI() -->把字符串编码为 URI。var test1 = "a + b != c";var test2 = encodeURIComponent(test1); // a%20%2B... 阅读全文
摘要:
强制不换行div{ white-space:nowrap;}自动换行div{ word-wrap: break-word; word-break: normal; }强制英文单词断行div{ word-break:break-all;}word-wrap:css的 wor... 阅读全文