如何将ajax / jquery文件添加到wordpress插件?

时间:2013-09-02 12:23:33

标签: php jquery ajax wordpress

我正在为注册表单做一个wordpress插件。我想通过ajax和jquery验证我的表单。我编写了ajax / jquery js文件,并将其命名为user_ajax.js,但是当我将其包含在我的主插件中时,它不起作用且$未定义错误也来了。

请帮助我,我在这里呆了4天......

3 个答案:

答案 0 :(得分:0)

以这种方式{* 3}}

在wordpress中注册脚本

http://codex.wordpress.org/Function_Reference/wp_enqueue_script

    function my_plugin_admin_init() {
            /* Register our script. */
            wp_register_script( 'my-plugin-script', plugins_url( '/ user_ajax.js', __FILE__ ) );

    wp_enqueue_script('jquery');  // Enqueue jQuery that's already built into WordPress
wp_enqueue_script('my-plugin-script');

}

add_action('wp_enqueue_scripts', 'my_plugin_admin_init');

使用以下函数作为wordpress插件文件中的方式 使用jQuery而不是$。

答案 1 :(得分:0)

你可以检查一下这个wordpress函数来注册和取消注册wwordpress代码中的javascript和css文件

请检查一下  Click Here

答案 2 :(得分:-2)

下载jquery-1.9.1并将js文件放入您的项目中,并使用脚本包含该文件

到头部,然后制作一个脚本标签ex

<html>
<head>

    <script src="js/libs/jquery-1.9.1.js"></script>
<script>
$('id or class').click(function){
alert("click");
})
<script>
</head>
<body>
</body>
</html>