我想從img標記調用onclick事件的函數。但它似乎並沒有調用函數。onclick事件onjavascript img標記不工作
<div class="portlet-title" style="background-color: #2E3638;">
<h4><i class="icon-reorder"></i>Image List</h4>
<%-- <asp:ImageButton id="imagelist" ImageUrl="~/Admin1/images/refresh-6.png"
style="height:30px; width:30px; margin-left:10px; cursor:pointer;" runat="server"
OnClick="imagelist_Click" Height="26px" /> --%>
<img src="images/refresh-6.png" style="height:30px; width:30px; margin-left:10px; cursor:pointer;" onClick="Load();" />
</div>
JavaScript代碼:
function Load() {
window.location("NewDesign.aspx");
}
請告訴我你的錯誤得到? – Shadow
javascript代碼位於哪裏? – Rami