我想Divs
为我的页面获取两个之间的 html,除了一个包含隐藏值的表jqplot
和一个大Div
的 this jqplot
。看来我应该使用 jQuery:not()
选择器来排除这两个元素。但是,我的代码失败了。那么有人可以给我一些建议吗?这是一个演示,下面是我的代码的基本思想。我唯一需要的是内容,直到第一次table
谢谢!
HTML
<div class="articles">
<h2 class="model_header">Exponential Model Output</h2>
<table align="center">
<!--end 04uberoutput_start-->
</table>
<table width="550" border="1">
</table>
####I need nothing below#####
<p> </p>
<table width="400" border="0" style="display: none">
</table>
<div id="chart1" style="margin-top: 20px; margin-left: 20px; width: 650px; height: 400px; position: relative;" class="jqplot-target">
</div>
</div>
JS:
var jq_html = $("div.articles:not(table&div)").html();