开发者

Firefox: lose focus when clear textbox value

开发者 https://www.devze.com 2023-04-13 03:40 出处:网络
I have a search box (textbox) and I want to clear it\'s content when I click inside. (some kind of watermark. Watermark control was not good for me in this case).

I have a search box (textbox) and I want to clear it's content when I click inside. (some kind of watermark. Watermark control was not good for me in this case). I am using "onKeyDown" event to clear the content:

 function clearTbSearch(tbSearch) {

        if (tbSearch != null && tbSearch.value == '<%= TypeHereText %>') {

            tbSearch.value = "";


     开发者_开发问答       tbSearch.style.color = "#000000";

        }
        return true;
    }

It works fine in IE and Chrome but in Firefox it takes 3 (!!!) clicks to get it focused. First click does not do anything. The second one clears the textbox but do not focus. The third click get the cursor focused. I tried anything... I would be glad for any suggestions... Thanks!!!


You can try this to make it look cleaner:

<input type="text" name="myInput" value="Your initial trademark" onfocus="this.value=''" />


No need to use onkeydown event, just use the generic onfocus instead:

var firstTime = true;
window.onload = function() {
    var input = document.getElementById("MyInput");
    input.onfocus = function() {
        if (!firstTime)
            clearTbSearch(this);
        firstTime = false;
    };
    input.focus();
};

This way it will work either by keyboard focus or mouse focus e.g. when clicking the textbox.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号