首頁 > web前端 > js教程 > 主體

jquery實作提示語淡入效果實例教程

小云云
發布: 2018-01-12 11:28:06
原創
1296 人瀏覽過

本文主要介紹了jquery實作提示語淡入效果的實例,具有很好的參考價值。下面跟著小編一起來看吧,希望能幫助大家。

效果圖:

#話不多說,請看程式碼:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> jquery 提示语淡入</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="" />
<style type="text/css">
.tishi-com{display:none;width:65px;height:20px;line-height:20px; background:#fff9c9; border:1px solid #c7bf93; color:#666;
position:relative;left:230px;top:-22px;}
</style>
<script type="text/javascript" src="jquery-3.0.0.js"></script>
</head>
<body>
 <p style="width:500px;height:200px;border:1px solid #E5E5E5;margin:0 auto;">
  <p style="height:50px;width:100%;">
   <label class="user-label">用户名:</label>
   <input type="text" class="username" name="username"/>
   <p class="tishi-com">
    <span class="tishi-font font-12"></span>
   </p>
  </p>
 <p style="height:50px;width:100%;">
  <label class="user-label">手机号:</label>
  <input type="text" class="phone" name="phone"/>
  <p class="tishi-com">
   <span class="tishi-font font-12"></span>
  </p> 
 </p>
  <p>
  <input type="submit" class="fade" value="提交" />
  </p>
 </p>
<script type="text/javascript">
 $(document).ready(function(){
  $(".fade").click(function(){
   var name=$.trim($(".username").val());
   var phone=$.trim($(".phone").val());
   if(name==""){
    $(&#39;input[name=username]&#39;).siblings(&#39;.tishi-com&#39;).fadeIn();
    $(&#39;input[name=username]&#39;).siblings(&#39;.tishi-com&#39;).find(&#39;.tishi-font&#39;).text(&#39;不能为空&#39;);
   }
   if(phone==""){
    $(&#39;input[name=phone]&#39;).siblings(&#39;.tishi-com&#39;).fadeIn();
    $(&#39;input[name=phone]&#39;).siblings(&#39;.tishi-com&#39;).find(&#39;.tishi-font&#39;).text(&#39;不能为空&#39;);
   }
  });
 });
</script>
</body>
</html>
登入後複製

相關建議:

h5正常文字方塊提示語的實作方法

#建議10款提示字源碼(收藏)總表

h5輸入框提示語 + 正常文字方塊提示語的實作方法

#

以上是jquery實作提示語淡入效果實例教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!