简体   繁体   English

为什么我的图像无法在Firefox中显示?

[英]Why won't my image display in firefox?

I created a fiddle but the image doesn't display in firefox. 我创建了一个小提琴,但是图像没有显示在Firefox中。 Why not? 为什么不? The html is 的HTML是

<div id="message1" class="alert alert-warning alert-dismissable flyover flyover-centered">
  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
  <strong></strong> User added
</div>

<!-- Menubar -->

<div id="menubar">
    <div id="menubarcentercontainer">
        <div id="menubarleft">
        </div>
        <div id="menubarright">
            <div id="menubaruserinfo" class="menubaritem">
                <p><a href="javascript:showLoginBox();">Sign In or Sign Up</a></p>          
            </div>

            <div class="menubaritem">
                <p>Get Onacci</p>
            </div>
        </div>
    </div>
</div>

<img id="top-header" src="https://wwwe.onacci.com/onacci.png">
<form id="searchbox" action="connect.php" method="POST">
    <div class="control-group" style="float:left;">
        <div class="controls" style="float:left;">
            <input type="text" id="email" name="email" placeholder="Enter your email" class="input-xlarge">
            <p class="help-block">Please provide your E-mail</p>
        </div>
    </div>
    <div style="float:left;">
        <!-- Button -->
        <button type="submit" class="btn btn-success">Add me to waiting list</button>
    </div>
</form>

Because you have an "e" on your www url request(image path). 因为您的www网址请求(图像路径)上有一个“ e”。 Also, the image URL is untrusted and firefox will keep blocking the image source url. 同样,图像URL是不受信任的,并且Firefox将继续阻止图像源URL。

Try requesting the image URL in a new window. 尝试在新窗口中请求图像URL。

It's classed as an untrusted connection by default in Firefox and therefore the image won't download and display. 在Firefox中,默认情况下将其归类为不受信任的连接,因此该图像将不会下载和显示。

在此处输入图片说明

It is showing up on Firefox v40. 它显示在Firefox v40上。 However, if it is an issue of "This Connection is Untrusted" error, then better you refer to this solution at official Firefox support forum: https://support.mozilla.org/en-US/kb/connection-untrusted-error-message 但是,如果是“此连接不受信任”错误的问题,那么最好在官方Firefox支持论坛上参考此解决方案: https : //support.mozilla.org/en-US/kb/connection-untrusted-error -信息

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM