이 글에서는 참고할만한 가치가 있는 프롬프트의 페이드인 효과를 구현한 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==""){ $('input[name=username]').siblings('.tishi-com').fadeIn(); $('input[name=username]').siblings('.tishi-com').find('.tishi-font').text('不能为空'); } if(phone==""){ $('input[name=phone]').siblings('.tishi-com').fadeIn(); $('input[name=phone]').siblings('.tishi-com').find('.tishi-font').text('不能为空'); } }); }); </script> </body> </html>
관련 권장 사항:
h5 입력 상자 프롬프트 + 일반 텍스트 상자 프롬프트 구현 방법
위 내용은 프롬프트 페이드인 효과 예제 튜토리얼의 jQuery 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!