【问题标题】:Adobe Brackets live preview is blank. What is wrong with my code?Adobe Brackets 实时预览为空白。我的代码有什么问题?
【发布时间】:2014-12-15 01:53:16
【问题描述】:

起初我被发送到 chrome 进行实时预览,页面是空白的。然后我开始收到一条错误消息:“打开一个 HTML 文件或确保您的项目中有一个 index.html 文件以启动实时预览。”

其他文件我已经做了实时预览就好了。我看不出代码有什么问题。我在这里搜索帖子以寻求解决方案,但找不到任何东西。这是最接近的,但它指的是一个 php 文件。 Brackets - Live Preview not working

<!DOCTYPE html>
<html>
    <head>
    <meta charset="utf-8">
    <link rel='stylesheet' type="text/css" href="design_sandbox.css"/>
    <title>Design Sandbox<title>
    </head>
    <body>
        <p>This is a test, is this working?</p>
        <div id="formpractice">
            <form>
             <p>Username:
                <input type="text" size="14" maxlength= "20" />    
            </p>
            <p>I vote for:
                <input type="radio" name="jazz" value="Ella Fitzgerald"/>
                <input type="radio" name="jazz" value="Herbie Hancock"/>
                <input type="radio" name="jazz" value="John Coltrane"/>                                               <input type="radio" name="jazz" value="Miles Davis"/>
                <input type="radio" name="jazz" value="Thelonius Monk"/>
            </p>
            <button>"SUBMIT"</button>
            </form>
        </div>    
    </body>

</html>

【问题讨论】:

    标签: html adobe-brackets


    【解决方案1】:

    @user3510681,

    我在浏览器中正常运行了您的代码,但页面显示为空白。查看代码后,我发现您没有关闭 HTML 中的“标题”标签。你的代码:

    <title>Design Sandbox<title>
    

    这就是括号 - 实时预览不起作用的原因。请更改标题代码如下,一切正常:

    <title>Design Sandbox</title>
    

    干杯!!

    【讨论】:

    • 哇,难以置信。谢谢。
    【解决方案2】:

    您没有正确关闭&lt;tittle&gt; 标签。他们没有 /in 关闭 &lt;title&gt; 标签

    <!DOCTYPE html>
    <html>
        <head>
        <meta charset="utf-8">
        <link rel='stylesheet' type="text/css" href="design_sandbox.css"/>
        <title>Design Sandbox</title>
        </head>
        <body>
            <p>This is a test, is this working?</p>
            <div id="formpractice">
                <form>
                 <p>Username:
                    <input type="text" size="14" maxlength= "20" />    
                </p>
                <p>I vote for:
                    <input type="radio" name="jazz" value="Ella Fitzgerald"/>
                    <input type="radio" name="jazz" value="Herbie Hancock"/>
                    <input type="radio" name="jazz" value="John Coltrane"/>                                               <input type="radio" name="jazz" value="Miles Davis"/>
                    <input type="radio" name="jazz" value="Thelonius Monk"/>
                </p>
                <button>"SUBMIT"</button>
                </form>
            </div>    
        </body>
    
    </html>

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-08-08
      • 1970-01-01
      • 2014-04-11
      • 2022-06-10
      • 2020-10-09
      • 2021-09-11
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多