最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to change input value onfocus and onblur (no jquery) - Stack Overflow

programmeradmin3浏览0评论

I wrote some code, kind of like an alternative for HTML5 placeholder using JavaScript, but it's not working. As far as I can figure (with my mediocre knowledge of js), everything should work, but it's not. Please help!!! Here's my code:

JavaScript:

(function(){
    var field = document.getElementById('placeholder');
    var placeholdertext = "Search box"; // << change this to whatever you want the placeholder text to be

    field.setAttribute("onblur", "if(value=='') { value = '" + placeholdertext + "'")
    field.setAttribute("onfocus", "if(value=='" + placeholdertext + "') { value = '' }")
})(); 

HTML

<input type="search" value="Search box" id="placeholder">

Edit:

I don't want to use jQuery or inline-html-coding, please. Thanks for any help, guys!!!

I wrote some code, kind of like an alternative for HTML5 placeholder using JavaScript, but it's not working. As far as I can figure (with my mediocre knowledge of js), everything should work, but it's not. Please help!!! Here's my code:

JavaScript:

(function(){
    var field = document.getElementById('placeholder');
    var placeholdertext = "Search box"; // << change this to whatever you want the placeholder text to be

    field.setAttribute("onblur", "if(value=='') { value = '" + placeholdertext + "'")
    field.setAttribute("onfocus", "if(value=='" + placeholdertext + "') { value = '' }")
})(); 

HTML

<input type="search" value="Search box" id="placeholder">

Edit:

I don't want to use jQuery or inline-html-coding, please. Thanks for any help, guys!!!

Share Improve this question asked Nov 5, 2012 at 0:55 ModernDesignerModernDesigner 7,71711 gold badges36 silver badges42 bronze badges 3
  • Consider using the HTML5 placeholder attribute instead – Phil Commented Nov 5, 2012 at 1:04
  • kind of like an alternative for HTML5 placeholder using JavaScript – ModernDesigner Commented Nov 5, 2012 at 1:09
  • @ModernDesigner - Consider using an existing placeholder polyfill instead. You haven't considered things like the placeholder value being submitted with the form if the user hasn't entered a value. – James Allardice Commented Nov 9, 2012 at 15:33
Add a ment  | 

4 Answers 4

Reset to default 2

Replace value with this.value in your code (as you need to check the value of the element that triggers an event, and not some global variable) and it will work.

As a sidenote, perhaps I'd prefer still using placeholder attribute here, providing a JS shim only for the browsers that don't support it. This would simplify the javascript code part too, as you wouldn't have to use some variable just to store some DOM-related data:

field.onblur = function() {
  if (this.value === '') {
    this.value = this.getAttribute('placeholder');
  }
};

field.onfocus = function() {
  if (this.value === this.getAttribute('placeholder') ) {
    this.value = '';
  }
};

... and in fact I'd prefer using addEventListener/attachEvent here instead of onblur/onfocus, as described in this answer.

<input type="text" value="Enter The User Name" onblur="if(this.value == '') { this.style.color='#f00'; this.value='Enter The User Name'}" onfocus="if (this.value == 'Enter The User Name') {this.style.color='#000'; this.value=''}" />

Try This without Jquery

Without jQuery:

field.onblur = function() {
  if (field.value == '') {
    field.value = placeholdertext;
  }
};

field.onfocus= function() {
  if (field.value == placeholdertext ) {
    field.value = '';
  }
};

I haven't tested this but if i'm understanding your question this should work. If it works don't forget to hit the check mark.

    var field = document.getElementById('placeholder');
    var placeholdertext = "Search box";

    field.bind('onblur', function() {
        if (field.text() === '') {
            field.text(placeholdertext);
        }
    });

    field.bind('onfocus', function() {
        if (field.text() === '') {
            field.text(placeholdertext);
        }
    });
发布评论

评论列表(0)

  1. 暂无评论