作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有什么可以转换或编码的id ="1_0xr__abc@xyz.com__abc@uvw.com__054gg"
转化为特定的数字字符串
例如假设 id="abcd@er.com"
被转换成任何数字字符串 "1233452556"
在 javascript 中可以这样做吗?
最佳答案
你可以散列字符串
String.prototype.hashCode = function() {
var hash = 0, i, chr, len;
if (this.length == 0) return hash;
for (i = 0, len = this.length; i < len; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
来源:http://werxltd.com/wp/2010/05/13/javascript-implementation-of-javas-string-hashcode-method/
使用
id="abcd@er.com".hashCode();
关于javascript - 将 id "1_0xr__abc@xyz.com__abc@uvw.com__054gg"转换或编码为数字字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30772224/
我是一名优秀的程序员,十分优秀!