通过一个按钮导出2个报告

时间:2014-07-24 18:05:12

标签: javascript html excel sharepoint

我正在尝试通过一个按钮打开2个报告,以使我们的流程更快一些。如果我只在“onclick”事件中放入一个链接,那么一切正常,但只要我将两个链接都打开它们就会打开。

这就是我的尝试。

<script type="text/javascript">

        function itsa()
        {
            window.location.href='http://*******/****/******/*****/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={*******************}&View={**********************}&CacheControl=1';
        }

        function other()
        {
             window.location.href='http://*******/****/******/*****/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={*******************}&View={**********************}&CacheControl=1';
        }

        </script>


        <div class="wrapper">
            <input type="button" style="width:180px; height: 75px; background:gray; color:white;font-size:larger; font-weight:bold; left: 214px;"onclick="itsa();other();" value ="Generate Excel report"/>
       </div>

我也试过

<div class="wrapper">
            <input type="button" style="width:180px; height: 75px; background:gray; color:white;font-size:larger; font-weight:bold; left: 214px;"onclick=" window.location.href='http://*******/****/******/*****/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={*******************}&View={**********************}&CacheControl=1';  window.location.href='http://*******/****/******/*****/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={*******************}&View={**********************}&CacheControl=1';" value ="Generate Excel report"/>
</div>

有什么想法吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

您需要在弹出窗口中打开每个报告。使用window.open("URL")代替window.location.href来执行此操作。