在 HTML/PHP 项目中使用 LiveValidation

发布于 2024-12-09 11:49:47 字数 681 浏览 2 评论 0原文

我找到了以下用于客户端验证的 javascript 库:

http://livevalidation.com/

网站上的示例非常清楚,但我就是无法让它们工作...

即使在创建一个非常基本的纯 html 网站时,如下所示:

<html>
<head>
    <link rel="scrip" type="text/javascript" href="scripts/LiveValidation-1.3.js" title="LiveValidation"/>
</head>

Enter the field then click somewhere else:
    <input type="text" id="f1"/>
    <script type="text/javascript">
        var f1 = new LiveValidation('f1');
        f1.add(Validate.Presence);
    </script>

</html>

此代码直接来自网站上提供的示例,但它不执行任何操作,对 .js 文件的引用是正确的...我忽略了什么 这里?谢谢。

I've found following javascript library for client-side validation:

http://livevalidation.com/

The examples on the website are very clear, but I just can't get them to work...

Even when creating a very basic html-only website like this:

<html>
<head>
    <link rel="scrip" type="text/javascript" href="scripts/LiveValidation-1.3.js" title="LiveValidation"/>
</head>

Enter the field then click somewhere else:
    <input type="text" id="f1"/>
    <script type="text/javascript">
        var f1 = new LiveValidation('f1');
        f1.add(Validate.Presence);
    </script>

</html>

This code comes directly from the examples provided on the website, however it doesn't do anything, the reference to the .js file is correct... What am I overlooking here? Thanks.

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

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

发布评论

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

评论(1

听,心雨的声音 2024-12-16 11:49:47

您需要使用脚本标签来引用 javascript 文件而不是链接标签。

    <html>
<head>
    <script type="text/javascript" src="scripts/LiveValidation-1.3.js"></script>
</head>

You need to use a script tag to reference the javascript file not the link tag.

    <html>
<head>
    <script type="text/javascript" src="scripts/LiveValidation-1.3.js"></script>
</head>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文