1

这是我发布的问题并得到了答案。

https://stackoverflow.com/questions/17780797/set-contents-of-page-according-to-browser-resolution

在 Firefox 和 chrome 中一切正常。但需要的是它必须在 IE 中运行。但它总是在 Captcha 下提供二维码。这是我更改代码的内容。

  <div style="border: 1px solid lightgrey; border-radius: 10px 10px 10px 10px; width: 825px">
        <ul id="holder" style="display:inline-block; list-style-type: none;">

             <li style="display:inline-block; list-style-type: none">
                <div class="captcha" >
                    @Html.Captcha("Refresh", "Enter Captcha", 5, "Is required field.", true)<div style="color: Red;">@TempData["ErrorMessage"]</div>
                </div>
            </li>

            <li style="display:inline-block; list-style-type: none;">
                <div id="qrcode" class="qrcode">
                    <img src="@Url.Action("QrCode", "Qr", new { url = Model.ShortUrl })"  onclick="AppendURL('@this.Model.ShortUrl')"/>
                </div>
            </li>

        </ul>
    </div>

JS代码是:

  window.onresize = getWindowWidthHeight;
window.onload = getWindowWidthHeight;
function getWindowWidthHeight(event) {

    var width = window.innerWidth;
    var height = window.innerHeight;
   // alert(width);
    //alert( $(window).width());
    var firstLi = document.getElementById('holder').children[0];
    if (width > 600) {
        firstLi.style.display = 'inline-block';
    } else {
        firstLi.style.display = 'list-item';
    }
};

请帮助。在此先感谢。

4

0 回答 0