<strong>第一種方法</strong>: <br>基於HTML5 input標籤的新特性 - placeholder 。另外,x-webkit-speech 屬性可以實現語音輸入功能。 <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="31669" class="copybut" id="copybut31669" onclick="doCopy('code31669')"><u>複製程式碼</u></a></span> 程式碼如下:</div> <div class="codebody" id="code31669"> <br><div><input type="email" name="email" spellcheck="false" placeholder="郵箱" autofocus tabindex="1" x-webkit-speech></div> <br><div><input type="password" name="password" placeholder="密碼" tabindex="2"></div> <br> </div> <br><strong>第二種方法</strong>: <br>用span模擬,定位span,借助JS鍵盤事件判斷輸入,確定span裡的內容顯示隱藏。 <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="23383" class="copybut" id="copybut23383" onclick="doCopy('code23383')"><u>複製程式碼</u></a></span> 代碼如下:</div> <div class="codebody" id="code23383"> <br>-/html/PUBL "IC DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <br> <br> <br><meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <br><title>無標題文件 <br><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <br><script type="text/javascript"> <BR>$(document).ready(function(){ <BR>$("#focus .input_txt").each(function(){ <BR>var thisVal =$(this).val(); <BR>//判斷文字方塊的值是否為空,有值的情況就隱藏提示語,沒有值就顯示<BR>if(thisVal!=""){ <BR>$(this).siblings("span").hide(); <BR>}else{ <BR>$(this).siblings("span").show(); <BR>} <BR> //聚焦型輸入框驗證<BR>$(this).focus(function(){ <BR>$(this).siblings("span").hide(); <BR>}).blur(function( ){ <BR>var val=$(this).val(); <BR>if(val!=""){ <BR>$(this).siblings("span").hide(); <BR>}else{ <BR>$(this).siblings("span").show(); <BR>} <BR>}); <BR>}) <BR>$("#keydown .input_txt") .each(function(){ <BR>var thisVal=$(this).val(); <BR>//判斷文字方塊的值是否為空,有值的情況就隱藏提示語,沒有值就顯示<BR>if(thisVal!=""){ <BR>$(this).siblings("span").hide(); <BR>}else{ <BR>$(this).siblings("span") .show(); <BR>} <BR>$(this).keyup(function(){ <BR>var val=$(this).val(); <BR>$(this).siblings("span ").hide(); <BR>}).blur(function(){ <BR>var val=$(this).val(); <BR>if(val!=""){ <BR>$ (this).siblings("span").hide(); <BR>}else{ <BR>$(this).siblings("span").show(); <BR>} <BR>}) <BR>}) <BR>}) <BR></script> <br><style type="text/css"> <BR>form{width:400px;margin:10px auto;border:solid 1px #E0DEDE; background:#FCF9EF;padding:30px;box-shadow:0 1px 10px rgba(0,0,0,0.1) inset;} <BR>label{display:block;height:40px;position:relative;margin:20px 0 ;} <BR>span{position:absolute;float:left;line-height:40px;left:10px;color:#BCBCBC;cursor:text;} <BR>.input_txt{width:398px;b:sol) <BR>.input_txt{width:398px;b:solorderid 1px #solorder ccc;box-shadow:0 1px 10px rgba(0,0,0,0.1) inset;height:38px;text-indent:10px;} <BR>.input_txt:focus{box-shadow:0 0 4px rgba(255,153,164153,164153,164153, ,0.8);border:solid 1px #B00000;} <BR>.border_radius{border-radius:5px;color:#B00000;} <BR>h2{font-family:"微軟雅黑";text-shadow:1px 1px 3px #fff;} <BR></style> <br> <br> </title> <br><form class="border_radius" id="focus"> <br><h2>聚焦型提示語消失</h2> <br><label><span>花瓣註冊信箱</span><input type="text" class="input_txt border_radius"></label> <br><label><span>密碼</span><input type="text" class="input_txt border_radius"></label> <br> </form> <br><form class="border_radius" id="keydown"> <br><h2>輸入型提示語消失</h2> <br><label><span>花瓣註冊信箱</span><input type="text" class="input_txt border_radius"></label> <br><label><span>密碼</span><input type="text" class="input_txt border_radius"></label> <br> </form> <br> <br> html> </div>