Insert an hidden character in text string using JavaScript

后端 未结 2 2011
终归单人心
终归单人心 2021-01-21 10:56

How to use an hidden character in text string using JavaScript.There is one text string which i read and writes back with the hidden character in it (so rewritten text looks sam

2条回答
  •  一个人的身影
    2021-01-21 11:41

    Since you are using javascript why don't you just add a property to the div:-

    var divs = document.getElementByTagName("div");
    for (var i = 0, length = divs.length; i < length; i++)
    {
        if (!divs[i].hasBeenRead)
        {       
             fnReadDiv(divs[i]);
             divs[i].hasBeenRead = true;
        }
    }
    

提交回复
热议问题