jQuery(window).load(function() {
jQuery.each(jQuery(".extraimgs"), function() {
//this.height = 0 and this.width=0 in IE only
if (this.height > this.width) {
if (this.height > 263) {
this.height = 263;
}
if (this.width > 354) {
this.width = 354;
}
}
else {
this.height = 263;
this.width = 354;
}
});
});
HTMLコード
<asp:DataList runat="server" ID="dlImages" RepeatColumns="2" RepeatDirection="Horizontal" RepeatLayout="Table" OnItemDataBound="dlImages_ItemDataBound" Style="display: none;">
<ItemTemplate>
<div>
<asp:Image runat="server" ID="imgPics" class="extraimgs" />
</div>
</ItemTemplate>
</asp:DataList>
IE でこのコードに問題があります。ここでは、実行時 (ページ読み込みイベント - jQuery を使用) に画像の高さと幅を設定し、コード ビハインドを使用して画像のソースを設定しています。
このコードは、IE8 を除くすべてのブラウザーで適切に機能します。ページ ロード イベントで画像の高さと幅を取得しますが、IE8 では画像の高さと幅を取得できません。load イベント中に画像の高さと幅を取得するために多くのことを試みましたが、うまくいきません。
誰かが解決策を知っていますか?