0

webpart を含む aspx sharepoint ページがあります。Web パーツ分離コード (ascx.cs) 内のページ (aspx) の div に display=none を設定する方法。

コード:

<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
<script type="text/javascript">
function ShowGearPage() {
    var gearPage = document.getElementById("GearPage");
    gearPage .style.display = "block";

    var loginPage = document.getElementById("MasterTable");
    loginPage.style.display = "none";
    return true;
}
    </script>


    <div align="center" id="GearPage" style="display:none;">
<div id="s4-simple-card" class="s4-simple-gearpage">
    <div id="s4-simple-card-content">
        <h1>
            <img id="gearsImage" alt="This animation indicates the operation is in progress."
                src="gears_anv4.gif" style="width: 24px; height: 24px; font-size: 0px;"
                align="middle" />
            Processing...
        </h1>
        <div>

        </div>

    </div>
</div>

ShowGearPage();

GearPage div を非表示にして、DisplayReportWebPart Web パーツ分離コードで Master div を表示したいと考えています。

4

1 に答える 1

0

runat="server"divに追加して使用するdivId.Attributes("Style","display:none");

于 2012-11-09T08:39:44.037 に答える