使用javascript加密url中的href链接

时间:2017-12-08 04:15:21

标签: javascript jquery

file:///C:/xx/xx/xx/xx/xx/xx/studentInfo.html

我想将studentInfo.html加密为字符,例如

file:///C:/xx/xx/xx/xx/xx/xx/A%1fs%fdd.html

使用javascript?我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您可以使用atob()(解码)和btoa()(编码)javascript功能在Base64中对其进行编码。

var path = "file:///C:/xx/xx/xx/xx/xx/xx/"
var file = "studentInfo.html"
console.log(path + btoa(file))
// Output: file:///C:/xx/xx/xx/xx/xx/xx/c3R1ZGVudEluZm8uaHRtbA==