天天看點

檢視JS代碼中\x68等加密資料内容的解決辦法

直接複制代碼儲存為html格式檔案,更改其中的加密内容

<script>
var a1="\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\x63\x73\x64\x6e\x2e\x6e\x65\x74";
function decode() {
document.getElementById('code').value = a1;
}
</script>
<textarea id=code cols=80 rows=20>
</textarea>
<input type=button onclick=decode() value=解碼>
           

如圖所示

檢視JS代碼中\x68等加密資料内容的解決辦法
檢視JS代碼中\x68等加密資料内容的解決辦法