Home > Web Front-end > HTML Tutorial > urgent! The img in td is not displayed under IE7 and IE8. _html/css_WEB-ITnose

urgent! The img in td is not displayed under IE7 and IE8. _html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:24:04
Original
1558 people have browsed it

html ie7 ie8

 <td>                            <ul class="inline">                                <li>                                    <img src="../img/A1201001.jpg" style="display:block" class="img_size" alt=""/>                                </li>                                <li>1235</li>                            </ul>                        </td>
Copy after login


It can be displayed by placing img directly in td. Now my requirement is that there may be multiple pictures that need to be displayed in one td. If they are placed directly in the td, the height of tr is too large, so I need the img to be displayed in a row in the td.
The above td is a cell in the table, but after the img is placed in the li, it is not displayed in IE7 and IE8, but the text 1235 can be displayed. I replaced ul with table, and img was also not displayed, but table was displayed.
What’s the problem? Can anyone give me some advice?


Reply to the discussion (solution)

LZ can be changed to DIV IMG and displayed in a row

Thank you very much!

My solution

for (var i = 0; i < urlArr.length; i++) {                        imgs += "<img src=\"" + urlArr[i] + "\" class=\"img_size\" alt=\"\" />";                    }                    if (imgs != "") {                        imgs = "<div class='row-fluid'>" + imgs + "</div>";                        $(this).children("td:last").width(urlArr.length * 22).append(imgs);                    }
Copy after login
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template