jQuery验证给出错误(.validate不是函数)

时间:2017-11-17 13:16:51

标签: jquery jquery-ui jquery-mobile jquery-plugins

Hy所有我正在使用jQuery validate插件它工作正常突然它停止工作当我检查控制台是否有任何错误它给了我这个错误

  

未捕获的TypeError:$(...)。validate不是函数

我已经阅读了很多论坛,但所有解决方案都不适合我,请有人帮助我,这是我的代码。

这是头部

private void enableBtnSend() {
    if (isDatesSelected() && etDetails.getText().toString().length() > 0) {
        btnCreateEnalbled = true;
        etDetails.setError(null);
        invalidateOptionsMenu();
    } else {
        if(etDetails.getText().toString().length() <= 0) {


        etDetails.setError(getString(R.string.empty_description_field));
    etDetails.requestFocus(); //add this
            } else {
                etDetails.setError(null);
    etDetails.requestFocus(); //add this
            }
            btnCreateEnalbled = false;
            invalidateOptionsMenu();
        }
    }

对于主体部分

<head>
    <meta charset="<?php bloginfo('charset'); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/assets/css/bootstrap.min.css" media="all" />
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/assets/css/style.css" media="all" />
    <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
    <link href="https://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet">

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.1/css/bootstrap-select.css" />
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.1/js/bootstrap-select.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.17.0/jquery.validate.js"></script>



    <?php wp_head(); ?>
</head>

请看看它并告诉我我做错了什么。提前致谢

1 个答案:

答案 0 :(得分:0)

你确定你使用的是WordPress的wp_enqueue_script()吗? 查看文档 - https://developer.wordpress.org/reference/functions/wp_enqueue_script/

wp_enqueue_script()

我认为你可以更多地简化你的ajax发布方式。 检查这个小提琴 - https://jsfiddle.net/ftr08w9L/

$.post()

当然,您需要调整代码的小提琴。我还添加了一些评论来帮助你。