将excel文件链接到iFrame

时间:2014-04-22 18:57:25

标签: javascript jquery excel sharepoint iframe

尝试使用iFrame从SharePoint加载链接,但我似乎无法将其加载到那里。

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
function loadIframe(url) {
    document.getElementByName('iframe').src=url;
}
</script>
<script type="text/javascript">

$(document).ready(function(){
var myList = $(".root.ms-core-listMenu-root.static");

var dealsoldcurrentmonth = '<li class="static"><a tabindex="0" class="static menu-item ms-core-listMenu-item ms-displayInline ms-navedit-linkNode" href="" id="dealsoldcurrentmonth"><span class="additional-background ms-navedit-flyoutArrow"><span class="menu-item-text">Deals Sold - Current Month</span></span></a></li>'
;myList.prepend(dealsoldcurrentmonth);
$("#dealsoldcurrentmonth").onclick(function() {loadIframe('http://c1w00168.itcs.hp.com/worldwide/dealuniverseww/_layouts/15/xlviewer.aspx?id=/worldwide/dealuniverseww/Shared%20Documents/Deal%20Universe%20WW%20-%20Deals%20Sold%20(Current%20Month).xlsx')});
$("#DeltaPlaceHolderPageTitleInTitleArea").hide();
});
</script>

0 个答案:

没有答案