在他的情况下 eval() 的替代方法是什么?
<script>
function load() {
var url = 'index.html';
if(eval('('+localStorage['isprouser']+')') == true)
url = 'index.html';
window.location = url;
}
</script>
我想这是不允许的。
在他的情况下 eval() 的替代方法是什么?
<script>
function load() {
var url = 'index.html';
if(eval('('+localStorage['isprouser']+')') == true)
url = 'index.html';
window.location = url;
}
</script>
我想这是不允许的。