ホームページ >バックエンド開発 >PHPチュートリアル >マウスをクリックするとテキストが消える問題

マウスをクリックするとテキストが消える問題

WBOY
WBOYオリジナル
2016-06-13 13:43:141137ブラウズ

マウスをクリックするとテキストが消える問題
教えてください。テキスト ボックス上でマウスをクリックすると、テキスト ボックスのデフォルト値が消え、別の場所をクリックすると、テキスト ボックスは自動的にデフォルト値を表示します。この効果を実現するにはどうすればよいですか?
ネットで色々調べて、javascriptやonclick、onblurなどで書いてみましたが、純粋なhtmlであれば使えるのですが、phpで書いても全く効果がありません!これはとても奇妙です!なぜ?
コードは次のとおりです:

JScript コード
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<script language="JavaScript" type="text/javascript">
   function addListener(element,e,fn){    
        if(element.addEventListener){    
             element.addEventListener(e,fn,false);    
         } else {    
             element.attachEvent("on" + e,fn);    
          }    
   }
   var txt_oldPsw = document.getElementById("txt_oldPsw");
   addListener(txt_oldPsw,"click",function(){txt_oldPsw.value = "";})
   addListener(txt_oldPsw,"blur",function(){txt_oldPsw.value = "old Password";})

   var txt_newPsw = document.getElementById("txt_newPsw");
   addListener(txt_newPsw,"click",function(){txt_newPsw.value = "";})
   addListener(txt_newPsw,"blur",function(){txt_newPsw.value = "new Password";})

   var txt_reenter = document.getElementById("txt_reenter");
   addListener(txt_reenter,"click",function(){txt_reenter.value = "";})
   addListener(txt_reenter,"blur",function(){txt_reenter.value = "re-enter new password";})
</script>



PHP コード
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
echo "<tr><td><input class='txt_style' id='txt_oldPsw' style='font-size:10.5pt; color:#6b6b6b' type='text' name='txt_oldPsw' value='old password'  $psw_disable></td></tr>";
    
    echo "<tr><td><input class='txt_style' id='txt_newPsw' style='font-size:10.5pt; color:#6b6b6b' type='text' name='txt_newPsw' value='new password' $psw_disable></td></tr>";
    
    echo "<tr><td><input class='txt_style' id='txt_reenter' style='font-size:10.5pt; color:#6b6b6b' type='text' name='txt_reenter' value='re-enter new password' $psw_disable></td></tr>";
    
    echo "<tr><td><input class='btn_active' type='submit' name='$btn_active_define' value='$btn_active_text'></td></tr>";



ありがとうございます。

-----解決策---------
js は、次の後に php に配置する必要があります。 !
つまり、txt_newPsw = document.getElementById("txt_newPsw");