jquery
  • jquery-mobile
  • mobile
  • 2014-01-10 34 views 0 likes 
    0

    我正在使用jquery移動。圖像未顯示在頁腳與jquery移動

    我有一個頁腳div。

    在那個div中,我想顯示2個圖像按鈕。

    按鈕出現,但圖像沒有。

    這是我的加價:

    <div class="footer-wrapper"> 
         <div data-role='footer' data-theme='a' data-position='fixed'> 
          <div data-role='navbar' id='kms'> 
           <table style="width: 100%"> 
            <tr> 
             <td style="text-align: center"> 
              <asp:ImageButton ID="btnEnterPIN" runat="server" Height="42px" Width="42px" ImageUrl="~/Images/Cute-Ball-Go-icon.png" 
               OnClientClick="return false;" ClientIDMode="Static" /> 
             </td> 
             <td style="text-align: center"> 
              <asp:ImageButton ID="btnEscape2" runat="server" Height="42px" Width="42px" ImageUrl="~/Images/back_2.png" 
               OnClientClick="return false;" ClientIDMode="Static" /> 
             </td> 
            </tr> 
           </table> 
          </div> 
         </div> 
        </div> 
    

    這是什麼樣子:

    enter image description here

    +0

    是圖像在正確的路徑?你通過檢查網絡控制檯看到任何404嗎? –

    +0

    嗨,謝謝你的回覆。對,他們是。我甚至使用完整的url路徑,仍然沒有運氣 –

    回答

    0

    使用HTML IMG代替ASP中的img它的工作原理

    相關問題