値を代入せずに変数を宣言すると、それが見えるのに見えないのはなぜですか? 例えば:
<%dim codeSwiper
%><script>alert(<%=codeSwiper%>);</script>
このコードでは、アラートが表示されます: undefined
<%dim codeSwiper
codeSwiper=""
%><script>alert(<%=codeSwiper%>);</script>
ここでアラートが表示されます:未定義
<%dim codeSwiper
codeSwiper="text"
%><script>alert(<%=codeSwiper%>);</script>
この場合、アラートは表示されません。
どうしたの?