这个大规模杀伤性武器的例子缺少什么?

发布于 2024-09-24 09:23:40 字数 1628 浏览 7 评论 0原文

伙计们,对我放松一点。我不知道我在做什么。

我根据我的研究克隆了 OpenLibrary/WMD 分支的 Git 存储库,这些研究使我这个问题

我在浏览器中打开了 wmd-test.html 文件,认为这将是 WMD 编辑器的完整工作示例。但我看到的只是两个文本区域,当我输入它们时,它们似乎没有执行任何操作(我期待实时预览)。我在 Firefox 3.6.8、Chrome 6 和 IE 9(测试版)中尝试了此页面。

有人愿意引导这个可怜的、无知的开发人员走向正确的方向吗?我缺少什么?

我在这里包含了整个 html 文件,因为它并不长。

<!DOCTYPE html>

<html>
    <head>
        <title>Test WMD Page</title>

        <link rel="stylesheet" type="text/css" href="wmd.css" />

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
        <script type="text/javascript" src="jquery.wmd.min.js"></script>
    </head>

    <body>
        <div style="width: 500px;">
            <textarea id="xwmd-input" rows="5" style="width: 100%"></textarea>
        </div>

        <div style="width: 500px;">
            <textarea id="ywmd-input" rows="5" style="width: 100%"></textarea>
        </div>

        <script type="text/javascript">
        $().ready(function() {
            $("textarea").wmd({
                "preview": true,
                "helpLink": "http://daringfireball.net/projects/markdown/",
                "helpHoverTitle": "Markdown Help",
            });
        });
        </script>
    </body>
</html>

Take it easy on me, guys. I have no idea what I'm doing.

I cloned the Git repository for the OpenLibrary/WMD fork based on my research that led me to this question.

I opened the wmd-test.html file in my browser, thinking it would be a full working example of the WMD editor in action. But all I see are two textareas, which don't appear to do anything when I type into them (I was expecting a live preview). I tried this page in Firefox 3.6.8, Chrome 6, and IE 9 (beta).

Would anybody care to steer this poor, clueless developer in the right direction? What am I missing?

I'm including the html file in its entirety here, as it isn't long.

<!DOCTYPE html>

<html>
    <head>
        <title>Test WMD Page</title>

        <link rel="stylesheet" type="text/css" href="wmd.css" />

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
        <script type="text/javascript" src="jquery.wmd.min.js"></script>
    </head>

    <body>
        <div style="width: 500px;">
            <textarea id="xwmd-input" rows="5" style="width: 100%"></textarea>
        </div>

        <div style="width: 500px;">
            <textarea id="ywmd-input" rows="5" style="width: 100%"></textarea>
        </div>

        <script type="text/javascript">
        $().ready(function() {
            $("textarea").wmd({
                "preview": true,
                "helpLink": "http://daringfireball.net/projects/markdown/",
                "helpHoverTitle": "Markdown Help",
            });
        });
        </script>
    </body>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

脸赞 2024-10-01 09:23:40

尝试删除“Markdwon Help”后面多余的逗号:

    <script type="text/javascript"> 
    $().ready(function() { 
        $("textarea").wmd({ 
            "preview": true, 
            "helpLink": "http://daringfireball.net/projects/markdown/", 
            "helpHoverTitle": "Markdown Help", 
        }); 
    }); 

它应该是:

            "helpHoverTitle": "Markdown Help"

Try removing the extra comma after "Markdwon Help":

    <script type="text/javascript"> 
    $().ready(function() { 
        $("textarea").wmd({ 
            "preview": true, 
            "helpLink": "http://daringfireball.net/projects/markdown/", 
            "helpHoverTitle": "Markdown Help", 
        }); 
    }); 

It should be:

            "helpHoverTitle": "Markdown Help"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文