Windows Mobile 5.0 (3) — 在Mobile Web Form中使用javascript

來源:互聯網
上載者:User

補充在(2)中的內容:

Mobile Web Form與Web Form的區別:

Mobile Web Form不支援Theme,但Mobile Web Form可以使用StyleSheet。

修改(1)的內容:

當模擬器和Microsoft ActiveSync無法同步時,可以按照下列步驟就可以立即恢複同步。
1.在Tools->Device Emulator Manager中,選擇正在同步的裝置右鍵,選擇"Uncradle"。
2.開啟Microsoft ActiveSync,按connect,這時候會出現同步畫面。
3.在Tools->Device Emulator Manager中,選擇"Cradle"繼續同步。

Mobile頁面上調用所有Asp.net的控制項必須訂製。

在Mobile Web Form中使用javascript的方法:

由於有些手機能夠支援javascript,所以只有支援javascript的手機才能顯示出效果,所以需要定製,在支援的手機中實現javascript效果。

涉及代碼:

    <mobile:Form id="Form1" runat="server" OnLoad="Form1_Load">
        <mobile:Label ID="Label1" Runat="server" Font-Bold="True">Student Name:</mobile:Label>
        <mobile:TextBox ID="txtStName" Runat="server"></mobile:TextBox>
        <mobile:Command ID="Command1" Runat="server" OnClick="Command1_Click1">Get Info</mobile:Command>
        <mobile:Command ID="Command2" Runat="server">Client Event</mobile:Command>
        <mobile:Panel ID="Panel1" Runat="server">
            <mobile:DeviceSpecific ID="DSP1" Runat="server">
                <Choice Filter="isHTML32" Xmlns="http://schemas.microsoft.com/mobile/html32template">
                    <ContentTemplate>
                    <asp:CheckBox ID="chkBox" runat="server" Text="CheckBox Control" />
                    <Script language="jscript" for="window" event="onload">
                            window.Form1.Command1.onclick = ShowMsg;
                            function ShowMsg(e)
                            {
                                alert("Msg!");
                            }
                        </Script>
                        <Script language="jscript" for="Command2" event="onclick">
                            alert("Msg!");
                        </Script> 
                    </ContentTemplate>
                </Choice>
            </mobile:DeviceSpecific>
        </mobile:Panel>
    </mobile:Form>

其中在panel中放置定製<mobile:DeviceSpecific ID="DSP1" Runat="server">

定製條件是只要支援HTML就行<Choice Filter="isHTML32">

在ContentTemplate中插入script代碼,其中for是針對的控制項,Mobile Web Form中用window代替document。Event表示對於指定的控制項,出現指定的事件時執行scipt中的操作。

第一個script中,當頁面onload的時,執行script,並指定command1的onclick事件。
第二個script中,只有當command2點擊時,才執行script。

在ContentTemplate中就能添加asp.net控制項,更能添加atlas等。

關於script的屬性可以看MSDN的SCRIPT Element | script Object

裡面對script的每個屬性,使用方法都有執行個體。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.