我是WebDevelopment
的新手。我有一个html文档,认为它是一个简历,这是html格式。例如 -
的 HTML
<p>Mobile: 12345678891
E-mail: <a href="abc@gmail.com">abc@gmail.com</a></p>
<p><b>Career Objective</b></p>
<p>Employment that fully utilizes my experience in Web Site Design & Development and offers the opportunity for career advancement along with the further expansion of IT skills.
</p><p><b>Career Summary
</b></p><p><b>2.1 years</b> of experience in analysis, design and development of client/server, web based application.
现在,在这里我想要从这个html字符串中获得一个子字符串。我希望有
我在网站上的经验此字符串。现在,我尝试从subString
方法获取此字符串,我得到start and end offset
所以,在这里,当我使用innerText
时会发生什么,它不匹配。那么如何获得我以这种方式显示的子串呢?如果我想给html中包含特殊字符和空格的每个单词赋予id,那么如何做呢?
答案 0 :(得分:0)
首先,您无法为任何非HTML标记的内容分配ID。所以单个单词或字符不能有ID。
其次,尝试使用包含确切内容的innerHTML
属性。 innerText
仅包含文本,因此索引可以更改。