OffClick() 函数

发布于 2024-11-27 12:40:17 字数 196 浏览 1 评论 0原文

所以我有这个联系表单,我想在每个输入中添加文本,当用户单击它时,文本会消失,以便他们可以添加内容 - 当用户单击其他内容时,它会重新出现。我已经用标签和负边距以及相对位置来完成此操作。我计划为每个输入添加一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神仙妹妹 2024-12-04 12:40:17

文本输入有 onblur ,选择框有可以连接的 onchange 事件。

<input type="text" id="UserName" name="UserName" value="Placeholder ..." />

<script type="text/javascript">
var el = document.getElementById("UserName");
var original_text = el.value;
el.onblur = function() {
    // `this` is set to the input element by the browser
    if ( ! this.value ) {
        this.value = original_text;
    }
};
</script>

使用 jQuery,就更容易了:

var el = $("#UserName");
var original_text = el.val();
el.blur(function(){
    // `this` is set to the input element by jQuery.
    if ( ! this.value ) {
        this.value = original_text;
    }
 });

Text inputs have onblur and select boxes have onchange events that can be wired into.

<input type="text" id="UserName" name="UserName" value="Placeholder ..." />

<script type="text/javascript">
var el = document.getElementById("UserName");
var original_text = el.value;
el.onblur = function() {
    // `this` is set to the input element by the browser
    if ( ! this.value ) {
        this.value = original_text;
    }
};
</script>

With jQuery, it is even easier:

var el = $("#UserName");
var original_text = el.val();
el.blur(function(){
    // `this` is set to the input element by jQuery.
    if ( ! this.value ) {
        this.value = original_text;
    }
 });
酒绊 2024-12-04 12:40:17

将标题属性设置为与文本框的值相同,然后写入:

$("input[type=text]").bind("focus",function(){
var $this = $(this);
if($this.attr("title") ==$this.val()){
$this.val('');
}).bind("blur",function(){

var $this = $(this);
if($this.val() ==''){
$this.val($this.attr("title"));
});

或者您可以使用现成的解决方案,例如:
http://code.google.com/p/jquery-watermark/

set title attribute same as value for textboxes and then write:

$("input[type=text]").bind("focus",function(){
var $this = $(this);
if($this.attr("title") ==$this.val()){
$this.val('');
}).bind("blur",function(){

var $this = $(this);
if($this.val() ==''){
$this.val($this.attr("title"));
});

or you could use a ready made solution like :
http://code.google.com/p/jquery-watermark/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文