<script type="text/javascript">
var email = document.write(localStorage.getItem('email'));
var pass = document.write(localStorage.getItem('pass'));
var url = document.write(document.URL);
document.location.href = url+"?email="+email+"&pass="+pass;
</script>
しかし、ページに入ると、次のような URL を残しました: http://example.com/ undefined?email=undefined&pass=undefined
起こっていません...誰でも問題を知っていますか? どうもありがとうございました!