特定のコメント行をキャプチャしようとしています。次のコードは、もちろんIEを除くすべてのブラウザで問題なく機能します。
<script>
var llf = jQuery('.select').contents().filter(function() {
return this.nodeType === 8 // Comment node
})[2].nodeValue.replace("LLF: ", "").trim();
console.log(llf);
alert(llf);
</script>
そしてこれはHTMLです:
<td class="select" nowrap="nowrap" rowspan="3">
<!-- NON IDEAL REASON: 1 hour time window -->
<b>$423.59</b><br />
<b>£267.50</b><br />
<!-- Policy Name: Investment Bank -->
<!--LLF: 1253.12 --> //This is the line I want to capture
すべてのブラウザでそれを行う方法があれば素晴らしいですが、IE +条件付きコメントの特定の解決策を考えることができれば、それも問題ありません。
ありがとう!