프롬프트 페이드인 효과 예제 튜토리얼의 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 일반 텍스트 상자 프롬프트 구현 방법

권장 1 0 프롬프트 소스 코드 (모음) 요약

h5 입력 상자 프롬프트 + 일반 텍스트 상자 프롬프트 구현 방법

위 내용은 프롬프트 페이드인 효과 예제 튜토리얼의 jQuery 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!