|
|
@@ -55,12 +55,13 @@
|
|
|
let html = '';
|
|
|
$.each(pushListJosn.pushList, function(idx, item) {
|
|
|
if (_osType === 'I') {
|
|
|
- alert('fnDecodeUnicode :' + fnDecodeUnicode(item.title.toLowerCase()) + 'escape :' + escape(item.title)
|
|
|
- + ' unescape :' + unescape(item.title)
|
|
|
- + ' encodeURI:' + encodeURI(item.title)
|
|
|
- + ' decodeURI:' + decodeURI(item.title)
|
|
|
- + ' encodeURIComponent:' + encodeURIComponent(item.title)
|
|
|
- + ' decodeURIComponent:' + decodeURIComponent(item.title)
|
|
|
+ alert('fnDecodeUnicode :' + fnDecodeUnicode(item.content.toLowerCase())
|
|
|
+ + 'escape :' + escape(item.content)
|
|
|
+ + ' unescape :' + unescape(item.content)
|
|
|
+ + ' encodeURI:' + encodeURI(item.content)
|
|
|
+ + ' decodeURI:' + decodeURI(item.content)
|
|
|
+ + ' encodeURIComponent:' + encodeURIComponent(item.content)
|
|
|
+ + ' decodeURIComponent:' + decodeURIComponent(item.content)
|
|
|
);
|
|
|
}
|
|
|
html += '<div class="inner">\n';
|