如何阅读一个班级,然后一个孩子班级



我正在尝试使用javascript(jquery(查找子类中的所有值。我无法使用开发人员工具查明问题。我上传了 HTML、javascript 和 CSS FIDDLE

只是想看看我的代码中缺少什么,它甚至不会触发我在父子代码循环后立即拥有的示例警报。HTML在这里,在小提琴中。警报应显示成本 (1(

</tr><tr class="ms-gb" lgrp="1"><td style="padding-left: 0px;" colspan="7"><a href="javascript:"><img id="lt_expandCollapseImage" onclick="_lt_LTGridViewExpandCollapseA(this.parentNode);" alt="Cost" src="/_layouts/15/images/plus.gif" border="0"></a>&nbsp;<span style="cursor: pointer;" onclick="_lt_LTGridViewExpandCollapseA(this);">Cost (1)</span></td></tr>
$(document).ready(function(){
    $(".ms-listviewtable td[class^='ms-gb']").each(function(){
      var mydiv = document.getElementsByClassName("nav-report-category")[0];
      var liTag = document.createElement('li');
      var aTag = document.createElement('a');
      var str = $(this).find("span:last");
      alert(str);

$(document).ready(function() {
  $(".ms-listviewtable .tr[class='ms-gb']").each(function() {
    alert('test');
    var mydiv = document.getElementsByClassName("nav-report-category")[0];
    var liTag = document.createElement('li');
    var aTag = document.createElement('a');
    var str = $(this).find("span:last");
    alert(str);
    //var str = $(this).text();
    str = str.substring(str.indexOf(":") + 1); //remove everything before :
    str = str.substring(0, str.indexOf("(")); //remove counts
    if (!str.trim() || str.trim() == null) {
      liTag = document.createElement('li');
      aTag = document.createElement('a');
      aTag.innerHTML = "Other";
      var link = window.location.href + "&RC=" + str.trim();
    } else {
      liTag = document.createElement('li');
      aTag = document.createElement('a');
      aTag.innerHTML = str.trim();
      var link = window.location.href + "&RC=" + str.trim();
    }
    aTag.setAttribute('target', '_blank');
    aTag.setAttribute("href", link);
    liTag.appendChild(aTag);
    mydiv.appendChild(liTag);
  });
});
.nav-report-category {
  border: none !important;
}
.nav-report-category li {
  font-size: 16px;
  padding: 10px 0px;
  width: 110px;
  display: inline-block;
  background-color: rgb(74, 137, 220);
  color: #fff!important;
  margin-right: 5px;
  text-align: center;
  -moz-border-radius: 9px 9px 0px 0px;
  -webkit-border-radius: 9px 9px 0px 0px;
  border-radius: 9px 9px 0px 0px;
  font-color: #fff!important;
}
.nav-report-category li.active {
  background-color: #CB6015!important;
  color: #fff!important;
}
.nav-report-category li a:visited {
  color: #fff!important;
}
.nav-report-category li a {
  color: #fff!important;
}
.nav-report-category li:Hover {
  background-color: #BE3A34;
  text-decoration: none;
}
.tab-desc {
  background-color: rgb(93, 156, 236);
  color: #fff !important;
  padding: 5px;
}
.tab-desc H2 {
  color: #fff !important;
}
<table class="ms-listviewtable" cellspacing="0" id="ctl00_ctl40_g_653c0b92_a010_4d61_bad1_f8584423dda8__LT_GridViewContainerToDisplay" style="border-style:None;width:100%;border-collapse:collapse;">
  <tbody>
    <tr class="ms-viewheadertr">
      <th class="ms-vh2" scope="col" style="text-align:Center;">&nbsp;</th>
      <th class="ms-vh2" scope="col" style="text-align:Center;">&nbsp;</th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;DocIcon&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$DocIcon')">Type</a><span>&nbsp;</span>
        <img
          src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Type&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;DocIcon&quot;);" style="cursor:pointer;"></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;BusinessFunction&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$BusinessFunction')">Business Function</a><span>&nbsp;</span>
        <img
          src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Business Function&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;BusinessFunction&quot;);" style="cursor:pointer;"></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;ReportCategory&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$ReportCategory')">Report Category</a><span>&nbsp;</span>
        <img
          src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Report Category&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;ReportCategory&quot;);" style="cursor:pointer;"></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;FileLeafRef&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$FileLeafRef')">Name</a></th>
      <th
        class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;Title&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$Title')">Title</a><span>&nbsp;</span>
        <img
          src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Title&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;Title&quot;);" style="cursor:pointer;"></th>
    </tr>
    <tr class="ms-gb" lgrp="1">
      <td colspan="7" style="padding-left:0px;">
        <a href="javascript:"><img id="lt_expandCollapseImage" src="/_layouts/15/images/plus.gif" onclick="_lt_LTGridViewExpandCollapseA(this.parentNode);" border="0" alt="Finance"></a>&nbsp;<span style="cursor:pointer;" onclick="_lt_LTGridViewExpandCollapseA(this);">Finance (9)</span></td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;AR Invoice Billing and Receipt History.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;);"
          href="https://myanalytix.beta.com/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl"><img title="Click to open &quot;AR Invoice Billing and Receipt History.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;);"
          href="https://myanalytix.beta.com/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl">AR Invoice Billing and Receipt History.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Financial Project Report V1.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report%20V1.rdl"><img title="Click to open &quot;Financial Project Report V1.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report%20V1.rdl">Financial Project Report V1.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Financial Project Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report.rdl"><img title="Click to open &quot;Financial Project Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report.rdl">Financial Project Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;PA Billing Event Exception Details.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl"><img title="Click to open &quot;PA Billing Event Exception Details.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl">PA Billing Event Exception Details.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;PA Expenditure Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Expenditure%20Report.rdl"><img title="Click to open &quot;PA Expenditure Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Expenditure%20Report.rdl">PA Expenditure Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Sales Order Detail Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Detail%20Report.rdl"><img title="Click to open &quot;Sales Order Detail Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Detail%20Report.rdl">Sales Order Detail Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Sales Order Summary Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Summary%20Report.rdl"><img title="Click to open &quot;Sales Order Summary Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Summary%20Report.rdl">Sales Order Summary Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;WIP Reconciliation Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Reconciliation%20Report.rdl"><img title="Click to open &quot;WIP Reconciliation Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Reconciliation%20Report.rdl">WIP Reconciliation Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;WIP Summary Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Summary%20Report.rdl"><img title="Click to open &quot;WIP Summary Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Summary%20Report.rdl">WIP Summary Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-gb" lgrp="1">
      <td colspan="7" style="padding-left:0px;">
        <a href="javascript:"><img id="lt_expandCollapseImage" src="/_layouts/15/images/plus.gif" onclick="_lt_LTGridViewExpandCollapseA(this.parentNode);" border="0" alt="Markview"></a>&nbsp;<span style="cursor:pointer;" onclick="_lt_LTGridViewExpandCollapseA(this);">Markview (2)</span></td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Markview Hold Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Hold%20Report.rdl"><img title="Click to open &quot;Markview Hold Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Markview</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Hold%20Report.rdl">Markview Hold Report.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Markview Queue Rpt.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Queue%20Rpt.rdl"><img title="Click to open &quot;Markview Queue Rpt.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Markview</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Queue%20Rpt.rdl">Markview Queue Rpt.rdl</a></td>
      <td
        class="ms-vb2">&nbsp;</td>
    </tr>
  </tbody>
</table>

两件小事:

  1. ms-gbtr不在td
  2. str 是一个 jQuery 对象。将其更改为文本的var str = $(this).find("span:last").text()

这是小提琴

你的问题有点令人困惑,但一般来说,如果你想使用 jquery 访问一个子元素,你所要做的就是:

<div class="primary">
        <div>1</div>
        <div>2</div>
        <div>3</div>
    </div>
    $(document).ready(function(){
        $(".primary").click(function(){
            $(this).children().each(function(){
            });
        });
    });

你的ms-gbtr而不是在td上,看着你提供的小提琴。 更改它,它将开始工作

$(document).ready(function() {
  $(".ms-listviewtable tr[class='ms-gb']").each(function() {
    var mydiv = document.getElementsByClassName("nav-report-category")[0];
    var liTag = document.createElement('li');
    var aTag = document.createElement('a');
    var str = $(this).find("span:last").text();
    console.log(str)
    //var str = $(this).text();
    str = str.substring(str.indexOf(":") + 1); //remove everything before :
    str = str.substring(0, str.indexOf("(")); //remove counts
    if (!str.trim() || str.trim() == null) {
      liTag = document.createElement('li');
      aTag = document.createElement('a');
      aTag.innerHTML = "Other";
      var link = window.location.href + "&RC=" + str.trim();
    } else {
      liTag = document.createElement('li');
      aTag = document.createElement('a');
      aTag.innerHTML = str.trim();
      var link = window.location.href + "&RC=" + str.trim();
    }
    aTag.setAttribute('target', '_blank');
    aTag.setAttribute("href", link);
    console.log(liTag, mydiv);
    liTag.appendChild(aTag);
    mydiv.appendChild(liTag);
  });
});
.nav-report-category {
  border: none !important;
}
.nav-report-category li {
  font-size: 16px;
  padding: 10px 0px;
  width: 110px;
  display: inline-block;
  background-color: rgb(74, 137, 220);
  color: #fff!important;
  margin-right: 5px;
  text-align: center;
  -moz-border-radius: 9px 9px 0px 0px;
  -webkit-border-radius: 9px 9px 0px 0px;
  border-radius: 9px 9px 0px 0px;
  font-color: #fff!important;
}
.nav-report-category li.active {
  background-color: #CB6015!important;
  color: #fff!important;
}
.nav-report-category li a:visited {
  color: #fff!important;
}
.nav-report-category li a {
  color: #fff!important;
}
.nav-report-category li:Hover {
  background-color: #BE3A34;
  text-decoration: none;
}
.tab-desc {
  background-color: rgb(93, 156, 236);
  color: #fff !important;
  padding: 5px;
}
.tab-desc H2 {
  color: #fff !important;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table class="ms-listviewtable" cellspacing="0" id="ctl00_ctl40_g_653c0b92_a010_4d61_bad1_f8584423dda8__LT_GridViewContainerToDisplay" style="border-style:None;width:100%;border-collapse:collapse;">
  <tbody>
    <tr class="ms-viewheadertr">
      <th class="ms-vh2" scope="col" style="text-align:Center;">&nbsp;</th>
      <th class="ms-vh2" scope="col" style="text-align:Center;">&nbsp;</th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;DocIcon&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$DocIcon')">Type</a><span>&nbsp;</span>
        <img src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Type&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;DocIcon&quot;);" style="cursor:pointer;"></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;BusinessFunction&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$BusinessFunction')">Business Function</a><span>&nbsp;</span>
        <img src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Business Function&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;BusinessFunction&quot;);" style="cursor:pointer;"></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;ReportCategory&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$ReportCategory')">Report Category</a><span>&nbsp;</span>
        <img src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Report Category&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;ReportCategory&quot;);" style="cursor:pointer;"></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;FileLeafRef&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$FileLeafRef')">Name</a></th>
      <th class="ms-vh2" scope="col" style="text-align:Center;"><a onclick="LTGridViewSortColumn_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;Title&quot;);return false;" href="javascript:__doPostBack('ctl00$ctl40$g_653c0b92_a010_4d61_bad1_f8584423dda8$_LT_GridViewContainerToDisplay','Sort$Title')">Title</a><span>&nbsp;</span>
        <img src="../_layouts/15/images/FILTER.GIF" title="Configure dynamic filtering for &quot;Title&quot; column" onclick="ConfigureDynamicFiltering_webPartUniqueId_g_653c0b92_a010_4d61_bad1_f8584423dda8(&quot;Title&quot;);" style="cursor:pointer;"></th>
    </tr>
    <tr class="ms-gb" lgrp="1">
      <td colspan="7" style="padding-left:0px;">
        <a href="javascript:"><img id="lt_expandCollapseImage" src="/_layouts/15/images/plus.gif" onclick="_lt_LTGridViewExpandCollapseA(this.parentNode);" border="0" alt="Finance"></a>&nbsp;<span style="cursor:pointer;" onclick="_lt_LTGridViewExpandCollapseA(this);">Finance (9)</span></td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;AR Invoice Billing and Receipt History.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;);"
          href="https://myanalytix.beta.com/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl"><img title="Click to open &quot;AR Invoice Billing and Receipt History.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl&quot;);"
          href="https://myanalytix.beta.com/SSRSReports/AR%20Invoice%20Billing%20and%20Receipt%20History.rdl">AR Invoice Billing and Receipt History.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Financial Project Report V1.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report%20V1.rdl"><img title="Click to open &quot;Financial Project Report V1.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report%20V1.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report%20V1.rdl">Financial Project Report V1.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Financial Project Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report.rdl"><img title="Click to open &quot;Financial Project Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Financial%20Project%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Financial%20Project%20Report.rdl">Financial Project Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;PA Billing Event Exception Details.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl"><img title="Click to open &quot;PA Billing Event Exception Details.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Billing%20Event%20Exception%20Details.rdl">PA Billing Event Exception Details.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;PA Expenditure Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Expenditure%20Report.rdl"><img title="Click to open &quot;PA Expenditure Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/PA%20Expenditure%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/PA%20Expenditure%20Report.rdl">PA Expenditure Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Sales Order Detail Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Detail%20Report.rdl"><img title="Click to open &quot;Sales Order Detail Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Detail%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Detail%20Report.rdl">Sales Order Detail Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Sales Order Summary Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Summary%20Report.rdl"><img title="Click to open &quot;Sales Order Summary Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Sales%20Order%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Sales%20Order%20Summary%20Report.rdl">Sales Order Summary Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;WIP Reconciliation Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Reconciliation%20Report.rdl"><img title="Click to open &quot;WIP Reconciliation Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Reconciliation%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Reconciliation%20Report.rdl">WIP Reconciliation Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;WIP Summary Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Summary%20Report.rdl"><img title="Click to open &quot;WIP Summary Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Finance</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/WIP%20Summary%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/WIP%20Summary%20Report.rdl">WIP Summary Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr class="ms-gb" lgrp="1">
      <td colspan="7" style="padding-left:0px;">
        <a href="javascript:"><img id="lt_expandCollapseImage" src="/_layouts/15/images/plus.gif" onclick="_lt_LTGridViewExpandCollapseA(this.parentNode);" border="0" alt="Markview"></a>&nbsp;<span style="cursor:pointer;" onclick="_lt_LTGridViewExpandCollapseA(this);">Markview (2)</span></td>
    </tr>
    <tr class="ms-alternating" style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Markview Hold Report.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Hold%20Report.rdl"><img title="Click to open &quot;Markview Hold Report.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Markview</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Hold%20Report.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Hold%20Report.rdl">Markview Hold Report.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
    <tr style="display:none;">
      <td class="ms-vb2" style="width:5px;"><img src="/_layouts/15/images/blank.gif" width="5" height="1" alt=""></td>
      <td class="ms-vb2" align="center" style="width:1px;">
        <a title="Click to open &quot;Markview Queue Rpt.rdl&quot;" onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Queue%20Rpt.rdl"><img title="Click to open &quot;Markview Queue Rpt.rdl&quot;" src="../_layouts/15/images/doc_sp16.gif" alt=""></a>
      </td>
      <td class="ms-vb2">rdl</td>
      <td class="ms-vb2">Accounting</td>
      <td class="ms-vb2">Markview</td>
      <td class="ms-vb2"><a onclick="DispDocItemExWithServerRedirect(this, event, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;FALSE&quot;, &quot;&quot;, &quot;1&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;); return false;"
          onmousedown="return VerifyHref(this, event, &quot;1&quot;, &quot;&quot;, &quot;1https://myanalytix.beta.com/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/SSRSReports/Markview%20Queue%20Rpt.rdl&quot;);" href="https://myanalytix.beta.com/SSRSReports/Markview%20Queue%20Rpt.rdl">Markview Queue Rpt.rdl</a></td>
      <td class="ms-vb2">&nbsp;</td>
    </tr>
  </tbody>
</table>

最新更新