我找不到与我的场景相匹配的问题,并且由于某种原因无法解决这个问题...... jQuery 没问题,但首选原生(或 angularJS / jQuery Lite)。
我有几个自定义标签的 html。我想保留一些标签(它们是空的),但只保留所有其他标签的文本。我没有直接操作 DOM - 我放入了一个 HTML,并且需要取出 HTML。例如:
<span class="ng-scope">CTAGCTCTCTGGAGATTAACGAGGAGAAATACTAGAtTGGTTCAT</span><start feat="1" class="ng-scope"></start><annotation index="1" class="ng-isolate-scope ng-scope" style="background-color: rgb(238, 153, 238); background-position: initial initial; background-repeat: initial initial;"><span tooltip="Another Promoter" tooltip-placement="mouse" tooltip-append-to-body="true" ng-transclude="" class="ng-scope"><span class="ng-scope">GATCATAAgcttgaat</span></span></annotation><end feat="1" class="ng-scope"></end><span class="ng-scope">tagccaaacttatt</span>
到
CTAGCTCTCTGGAGATTAACGAGGAGAAATACTAGAtTGGTTCAT <start feat="1"></start> GATCATAAgcttgaat <end feat="1"></end> tagccaaacttatt
空白不重要。最终我也会拉出开始和结束,所以它们的形式不是太重要(例如可能是 <1> xx )
谢谢