其他分享
首页 > 其他分享> > 鼠标单击单元格后内部文本消失

鼠标单击单元格后内部文本消失

作者:互联网

     js代码如下

  

//鼠标单击编辑内容
function  editPrice(){
    if(event&&event.srcElement&&event.srcElement.tagName=="TD")
    {
let priceTD = event.srcElement; let oldPrice = priceTD.innerText; priceTD.innerHTML = "<input type = 'text' size='4px' />"; let input1 = priceTD.firstChild; input1.value = oldPrice; alert(priceTD.innerText) } }

点击之前:   (priceTD的firstChild为文本) :   

                        

 

 

   第一次点击后正常显示单价内容      :

(priceTD的firstChild为元素input)                         

                     

                     

 

 alert显示点击后priceTD的内容为空:

 

 

所以再次点击时,oldPrice的赋值为空,出现单元格变空的情况

 

 

 

 

修改代码如下:

//鼠标单击编辑内容
function  editPrice() {
// 获取PriceTD的内容(先获取)
// priceTD的firstChild可能是元素或者文本,只有是文本的时候执行下列操作,执行后变成元素,不能再次执行
    if (priceTD.firstChild && priceTD.firstChild.nodeType == 3) {
        let priceTD = event.srcElement;
        let oldPrice = priceTD.innerText;
        priceTD.innerHTML = "<input type = 'text' size='4px' />";
        let input1 = priceTD.firstChild;
        input1.value = oldPrice;
    }
}

if判断仅当priceTD的firstChild为文本时才执行代码,当为元素时(即点击过一次)则不变化

 

标签:input1,鼠标,单击,priceTD,单元格,firstChild,let,event,oldPrice
来源: https://www.cnblogs.com/luanananna/p/15856558.html