您好,通过js实现得到焦点时文本框清空,失去焦点时又显示默认文字,值

2024-11-05 03:57:34
推荐回答(1个)
回答1:

如果你那文本框是 

var modified = false;
document.getElementById("inputbox").onfocus = function() {
    if(!modified)
        document.getElementById("inputbox").value = "";
};
document.getElementById("inputbox").onblur = function() {
    if(!modified)
        document.getElementById("inputbox").value = "默认文字";
};
document.getElementById("inputbox").onkeydown = function() {
    modified = true;
};