js实现在input框中动态添加图标

本例说的应用场景比如有在input框架中输入字符后,右边会出现一个叉叉清除的按钮,比如下图:

js实现在input框中动态添加图标_第1张图片

HTML代码:

JS代码:

function clearInput(obj) {
    let clearObj = document.getElementById("clear-input"); //动态生成的图标对象
    
    if(obj.value.length>0){//开始输入时动态生成
    
        if(!document.body.contains(clearObj)){//判断图标对象是否存在
        
            var newNode = document.createElement("i");
            newNode.style.cssText = "position:relative;left:200px;";
            newNode.setAttribute("class","Hui-iconfont");
            newNode.setAttribute("id","clear-input");
            newNode.innerHTML = "";
            
            obj.parentNode.insertBefore(newNode,obj);//js只有insertBefore,所以通过定位实现到最右边
        }
    }else{
        obj.parentNode.removeChild(clearObj); //移除图标对象
    }
}

你可能感兴趣的:(js实现在input框中动态添加图标)