- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据此 mdn doc 全局 .escape()
函数:'...已从 Web 上删除。尽管某些浏览器可能仍然支持它,但它正在被删除......',正如弃用通知所说。我有一些工作代码严重依赖于可用的功能。查看 es5 escape(string) docs,我将这段代码放在一起,希望“让函数保持事件状态”,而不是重写我的工作代码。 问题是,当然,这个版本是在做与“即将被丢弃的.escape()
函数”相同的事情吗?这是我想出的垫片:
//
// these 69 characters are left as is by native implementation
var safe69chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@*_+-./";
// equivalent hash map for speeding up character lookup
var chars69 = {0:1,1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1,9:1,A:1,B:1,C:1,D:1,E:1,F:1,G:1,H:1,I:1,J:1,K:1,L:1,M:1,N:1,O:1,P:1,Q:1,R:1,S:1,T:1,U:1,V:1,W:1,X:1,Y:1,Z:1,a:1,b:1,c:1,d:1,e:1,f:1,g:1,h:1,i:1,j:1,k:1,l:1,m:1,n:1,o:1,p:1,q:1,r:1,s:1,t:1,u:1,v:1,w:1,x:1,y:1,z:1,"@":1,"*":1,_:1,"+":1,"-":1,".":1,"/":1};
// these 'percent escapes' map to lower Array<int> list
// and their coresponding (funky) characters are processed by ecape function
var percesc = "%00%01%02%03%04%05%06%07%08%09%0A%0B%0C%0D%0E%0F%10%11%12%13%14%15%16%17%18%19%1A%1B%1C%1D%1E%1F%20%21%22%23%24%25%26%27%28%29%2C%3A%3B%3C%3D%3E%3F%5B%5C%5D%5E%60%7B%7C%7D%7E%7F%80%81%82%83%84%85%86%87%88%89%8A%8B%8C%8D%8E%8F%90%91%92%93%94%95%96%97%98%99%9A%9B%9C%9D%9E%9F%A0%A1%A2%A3%A4%A5%A6%A7%A8%A9%AA%AB%AC%AD%AE%AF%B0%B1%B2%B3%B4%B5%B6%B7%B8%B9%BA%BB%BC%BD%BE%BF%C0%C1%C2%C3%C4%C5%C6%C7%C8%C9%CA%CB%CC%CD%CE%CF%D0%D1%D2%D3%D4%D5%D6%D7%D8%D9%DA%DB%DC%DD%DE%DF%E0%E1%E2%E3%E4%E5%E6%E7%E8%E9%EA%EB%EC%ED%EE%EF%F0%F1%F2%F3%F4%F5%F6%F7%F8%F9%FA%FB%FC%FD%FE%FF";
var ordesc = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 58, 59, 60, 61, 62, 63, 91, 92, 93, 94, 96, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255];
var isfunc = function (node) {
return "function" == typeof node;
};
var pad02;
var pad04;
// here check's if it has global .escape,
// if leaves 'safe69chars' characters unescaped,
// if correctly escapes other characters,
// and (re)defines the function if asserts don't pass
if (
!("escape" in window) ||
!isfunc(window.escape) ||
(safe69chars !== window.escape(safe69chars)) ||
(percesc !== window.escape(ordesc.map(function(c) {
return String.fromCharCode(c);
}).join("")))
) {
pad02 = function(c) {
//return Array(3).splice(c.length).join("0") + c;
return (Array(3).splice(c.length).join("0") + c).toUpperCase();
};
pad04 = function(c) {
//return Array(5).splice(c.length).join("0") + c;
return (Array(5).splice(c.length).join("0") + c).toUpperCase();
};
window.escape = function escape (str) {
str += '';
// loops each character
// escaping it if needed
for (
var
chr, chrcode, hexcode, i = -1,
len = str.length, escaped = "";
++i < len;
) {
chr = str.charAt(i);
// use hash lookup to speed up search a bit
if (chars69.hasOwnProperty(chr)) {
// if it's in chars69 append it
escaped += chr;
} else {
// get the character's code and it's hex value
chrcode = chr.charCodeAt(0);
hexcode = chrcode.toString(16);
if (chrcode < 256) {
// pad with '0', length 2 if less than 256 and append
escaped += ('%' + pad02(hexcode));
} else {
// pad with '0', length 4 otherwise and append
escaped += ('%u' + pad04(hexcode));
}
}
}
return escaped;
};
}
//?
//
最佳答案
@jfriend00,你说得对,我没想到要进行测试。它构建一个 2**16 (=65536) 字符串并在其上运行两个版本比较 (===) 输出。 native .escape()
实际上大写了十六进制字母(在上面的代码片段中遗漏了)。开始了:
//
//
var safe69chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@*_+-./";
var pad02 = function(c) {
return (Array(3).splice(c.length).join("0") + c).toUpperCase();
};
var pad04 = function(c) {
return (Array(5).splice(c.length).join("0") + c).toUpperCase();
};
function esc (str) {
str += '';
for (
var chr, chrcode, hexcode, i = -1,
len = str.length, escaped = "";
++i < len;
) {
chr = str.charAt(i);
if (-1 != safe69chars.indexOf(chr)) {
escaped += chr;
} else {
chrcode = chr.charCodeAt(0);
hexcode = chrcode.toString(16);
if (chrcode < 256) {
escaped += ('%' + pad02(hexcode));
} else {
escaped += ('%u' + pad04(hexcode));
}
}
}
return escaped;
}
var mkrange = function (len) {
return Array.prototype.map.call(
Array(len+1).join("1"),
function (one, i) {return i;}
)
};
var rng = mkrange(Math.pow(2, 16));
// builds 65536 character string
var str = rng.map(function (c) {return String.fromCharCode(c)}).join("");
// runs the test:
esc(str) === escape(str);
// true
//
关于javascript - 用于 JavaScript .escape 函数的 Shim,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23451966/
我在为 MacOSX 构建的独立包中添加 DMG 背景的自定义图标时遇到问题。我在项目的根目录中添加了一个包。正在从中加载自定义图标,但没有加载 DMG 背景图标。我正在使用 Java fx 2.2.
Qt for Symbian 和 Qt for MeeGo 有什么区别?我知道 Qt 是一个交叉编译平台。这是否意味着如果我使用来自 Qt 的库,完全相同的库可以在所有支持 Qt 的设备(例如 Sym
我正在尝试使用 C# .NET 3.5/4.0 务实地运行 SQL Server 数据库的备份。我已经找到了如何完成此操作,但是我似乎找不到用于备份的命名空间库。 我正在寻找 Microsoft.Sq
我最近在疯狂学习 Java,但我通常是一名 .NET 开发人员。 (所以请原谅我的新手问题。) 在 .Net 中,我可以在不使用 IIS 的情况下开发 ASP.Net 页面,因为它有一个简化的 Web
这post仅当打印命令中有字符串时才有用。现在我有大量的源代码,其中包含一条声明,例如 print milk,butter 应该格式化为 print(milk,butter) 用\n 捕获行尾并不成功
所以我的问题是: https://gist.github.com/panSarin/4a221a0923927115584a 当我保存这个表格时,我收到了标题中的错误 NoMethodError (u
如何让 Html5 音频在点击时播放声音? (ogg 用于 Firefox 等浏览器,mp3 用于 chrome 等浏览器) 到目前为止,我可以通过 onclick 更改为单个文件类型,但我无法像在普
如果it1和it2有什么区别? std::set s; auto it1 = std::inserter(s, s.begin()); auto it2 = std::inserter(s, s.en
4.0.0 com.amkit myapp SpringMVCFirst
我目前使用 Eclipse 作为其他语言的 IDE,而且我习惯于不必离开 IDE 做任何事情 - 但是我真的很难为纯 ECMAScript-262 找到相同或类似的设置。 澄清一下,我不是在寻找 DO
我想将带有字符串数组的C# 结构发送到C++ 函数,该函数接受void * 作为c# 结构和char** 作为c# 结构字符串数组成员。 我能够将结构发送到 c++ 函数,但问题是,无法从 c++ 函
我正在使用动态创建的链接: 我想为f:param附加自定义转换器,以从#{name}等中删除空格。 但是f:param中没有转换器
是否可以利用Redis为.NET创建后写或直写式缓存?理想情况下,透明的高速缓存是由单个进程写入的,并且支持从数据库加载丢失的数据,并每隔一段时间持久保存脏块? 我已经搜查了好几个小时,也许是goog
我正在通过bash执行命令的ssh脚本。 FILENAMES=( "export_production_20200604.tgz" "export_production_log_2020060
我需要一个正则表达式来出现 0 到 7 个字母或 0 到 7 个数字。 例如:匹配:1234、asdbs 不匹配:123456789、absbsafsfsf、asf12 我尝试了([a-zA-Z]{0
我有一个用于会计期间的表格,该表格具有期间结束和开始的开始日期和结束日期。我使用此表来确定何时发生服务交易以及何时在查询中收集收入,例如... SELECT p.PeriodID, p.FiscalY
我很难为只接受字符或数字的 Laravel 构建正则表达式验证。它是这样的: 你好<-好的 123 <- 好的 你好123 <-不行 我现在的正则表达式是这样的:[A-Za-z]|[0-9]。 reg
您实际上会在 Repeater 上使用 OnItemDataBound 做什么? 最佳答案 “此事件为您提供在客户端显示数据项之前访问数据项的最后机会。引发此事件后,数据项将被清空,不再可用。” ~
我有一个 fragment 工作正常的项目,我正在使用 jeremyfeinstein 的 actionbarsherlock 和滑动菜单, 一切正常,但是当我想自定义左侧抽屉列表单元格时,出现异常
最近几天,我似乎平均分配时间在构建我的第一个应用程序和在这里发布问题!! 这是我的第一个应用程序,也是我们的设计师完成的第一个应用程序。我试图满足他所做的事情的外观和感觉,但我认为他没有做适当的事情。
我是一名优秀的程序员,十分优秀!