onLoad
クライアント側のイベントをASP.Netイメージコントロールにバインドする必要があります。私はかなり長い間それを試しましたが、成功しませんでした。
関数名onload="onLoadFunction(this)"
脚本:
function onLoadFunction(img) {
$(img).css("visibility", "visible"); // Using jQuery
// img.style.visibility = "visible"; // Using just javascript.
}
マークアップ:
<asp:Image ID="imgTopFourImg2" runat="server" width="170px" height="112px" CssClass="ArticleImgHP" border="0" ImageUrl="hello.jpg" OnLoad="onLoadFunction(this)" />
それは私のために働いていません誰かがこれで私を助けることができれば私は感謝します。