标签:har document asc rip value str from style code
方法一:轉義字符
\xxx:用十六進制的ASCII碼值轉換成字符。
方法二:String方法
String.fromCharCode(value); //用十進制的ASCII碼值轉換成字符。
舉例:結果都為‘N‘
document.write(String.fromCharCode(78));
document.write(‘\x4E‘);
标签:har document asc rip value str from style code
原文地址:http://www.cnblogs.com/mandongpiaoxue/p/7090638.html