大型网站建设价格多少,百度联盟广告怎么屏蔽,商融建设集团有限公司网站,无锡网络推广平台实现效果#xff1a;将鼠标聚焦到邮箱地址文本框时#xff0c;文本框 内的“请输入邮箱地址”文字将被清除#xff1b; 若没有输入任何内容#xff0c;鼠标移除后邮箱地址文本框被还原。 1 !DOCTYPE html2 html3 head4 meta charset…实现效果将鼠标聚焦到邮箱地址文本框时文本框 内的“请输入邮箱地址”文字将被清除 若没有输入任何内容鼠标移除后邮箱地址文本框被还原。 1 !DOCTYPE html2 html3 head4 meta charsetUTF-85 title注册/title6 !-- link relstylesheet hrefcss/default.css typetext/css / --7 8 script typetext/javascript src../scripts/jquery-1.7.2.js/script9 script typetext/javascript
10 $(function(){
11 $(#mailaddress).focus(function(){
12 var txt_val $(this).val();
13 if (txt_val 请输入邮箱地址) {
14 $(this).val();
15 }
16 });
17
18 $(#mailaddress).blur(function(){
19 var txt_val $(this).val();
20 if (txt_val ) {
21 $(this).val(请输入邮箱地址);
22 }
23 });
24 $(#password).focus(function(){
25 var txt_val $(this).val();
26 if (txt_val 请输入邮箱密码) {
27 $(this).val();
28 }
29 });
30
31 $(#password).blur(function(){
32 var txt_val $(this).val();
33 if (txt_val ) {
34 $(this).val(请输入邮箱密码);
35 }
36 });
37
38
39 });
40 /script
41 /head
42 body
43 input typetext idmailaddress value请输入邮箱地址/ br/br/
44 input typetext idpassword value请输入邮箱密码/ br/br/
45 input typebutton value登录/
46 /body
47 /html 转载于:https://www.cnblogs.com/noaman/p/5954622.html