在他的案例中,eval()的替代方案是什么?
<script>
function load() {
var url = 'index.html';
if(eval('('+localStorage['isprouser']+')') == true)
url = 'index.html';
window.location = url;
}
</script>
我想这是不允许的。
答案 0 :(得分:0)
您可以用以下方法替换evel行:
localStorage.getItem('isprouser'])
看看你是否得到了什么......