2、在index.html中的<body>标签中,输入以下html代码:
<input type="text" placeholder="请输入账号" />
<input type="password" placeholder="请输入密码" />
3、浏览器运行index.html页面,此时的输入框有了提示文字“请输入账号”,密码框有了提示文字“请输入密码”。
1、使用onfocus事件检查当前值,如果是默认值,就将value属性置空.如:<input type="text" value="请输入内容" onfocus="javascript:if(this.value=='请输入内容')this.value=''">2、<input id="email" type="text" placeholder="这里输入文字" size="22" />
placeholder="这里输入文字"
input设置默认显示文字的两种方式:
1.placeholder属性。在输入框为空的情况下会显示placeholder中的值。但是提交时不能直接取其值。
2.value属性。在输入框加载的时候输入框中的值。提交时可直接获取。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)