http://stockhtm.finance.qq.com/sstock/ggcx/000752.shtml?pgv_ref=fi_quote_my_recent怎么获取得到上面地址中右侧的"五档盘口"信息
ajax调用的,谁能找出JS的调用地址。。

解决方案 »

  1.   


    右侧的"五档盘口"信息CSS效果吧JS 你自己下载了页面 找下有些可以找到 
      

  2.   

    用浏览器调试,便知道,ff,IE8
      

  3.   

    <div id="QQFooter">
    <ul>
        <li><span id="yijian">
            <script>
              var supportId = '390';
              if(window['qf_gCnf'] != undefined && window['qf_gCnf']['supportId']){
                supportId = window['qf_gCnf']['supportId'];
              }
              document.write('<a href="http://support.qq.com/beta2/simple/write.html?fid='+supportId+'" target="_blank" class="fUL fc1">意见反馈</a>');
            </script>
            </span>腾讯声明:频道所载文章、数据等内容纯属作者个人观点,仅供投资者参考,并不构成投资建议。投资者据此操作,风险自担。 </li> <li><a href="http://www.tencent.com/">关于腾讯</a> | <a href="http://www.tencent.com/index_e.shtml">About Tencent</a> | <a href="http://www.qq.com/contract.shtml">服务条款</a> | <a href="http://adver.qq.com/">广告服务</a> | <a href="http://hr.tencent.com/">腾讯招聘</a> | <a href="http://gongyi.qq.com/">腾讯公益</a> | <a href="http://service.qq.com/">客服中心</a> | <a href="http://www.qq.com/map/">网站导航</a></li> <li>Copyright &copy; 1998 - 2011 Tencent Inc. All Rights Reserved</li>
    <li>腾讯公司 版权所有</li>
    </ul>
    </div>
    <script type="text/javascript">QosSS.t[4]= (new Date()).getTime();</script>
      

  4.   

    http://download.csdn.net/download/zengxin2008/2648572
    这个就是你要的
      

  5.   

    http://www.netxk.cn/?p=78
    是这个吗httpwebrequest请求获取html
      

  6.   

    document.body.innerHTML.match(/ <table> . <\/table> /gi) 
    或者
    <script> 
    strHTML= " <table> </table> 323232fdfffdsfsdf <table   border=0   cellpadding=0   cellspacing=0   id=Tbs   rules=rows> 你的单元格 </table> fhdsfhjdsflsdfjdslflfdsfl <table> <fdfhfd </table> " 
    var   r=strHTML.match(/ <table\s*border=0\s*cellpadding=0\s*cellspacing=0\s*id=Tbs.*? <\/table> /gi) 
    alert(r) 
    </script> 
      

  7.   

    其实 用
    JavaScript HTML DOM 网上找下例子 就能搞定。
      

  8.   

    http://www.w3school.com.cn/js/js_obj_htmldom.asp