OffClick() 函数
所以我有这个联系表单,我想在每个输入中添加文本,当用户单击它时,文本会消失,以便他们可以添加内容 - 当用户单击其他内容时,它会重新出现。我已经用标签和负边距以及相对位置来完成此操作。我计划为每个输入添加一个 onclick 函数。
我的问题是 - 是否有类似 Offclick() 的函数?或者类似于 mouseOver() 和 MouseOut() 的东西?
So I have this contact form and I want to put text inside each input, when the user clicks on it the text disappears so they can add stuff - when the user clicks on something else it reappears. I have done this with labels and negative margin along with position relative. I plan on adding an onclick function to each input.
My question is - is there a function that is like Offclick()? Or something similiar to mouseOver() and MouseOut()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文本输入有
onblur
,选择框有可以连接的onchange
事件。使用 jQuery,就更容易了:
Text inputs have
onblur
and select boxes haveonchange
events that can be wired into.With jQuery, it is even easier:
将标题属性设置为与文本框的值相同,然后写入:
或者您可以使用现成的解决方案,例如:
http://code.google.com/p/jquery-watermark/
set title attribute same as value for textboxes and then write:
or you could use a ready made solution like :
http://code.google.com/p/jquery-watermark/