>>376
試して見たが何の問題も無いので質問には答えられん
----
<html>
<body>
<script>
function add(){
document.getElementById("show").innerHTML += "i";
}

function check(){
test = document.getElementById("show").innerHTML;
alert(test);
}
</script>

<input type="button" value="iを付け加える" onclick="add()">
<input type="button" value="読み取り" onclick="check()">
<p id="show"></p>
</body>
</html>