douhan8610 2015-10-23 13:03
浏览 69
已采纳

Wordpress插件无法接收ajax发布数据

I am trying to develop a WordPress plugin that will send a variable to my server. So far if I use my code bellow as separate PHP file and not within my script works great.. it sends the variables and receive the results from remote PHP file.

If I put the same code in my custom WordPress plugin it doesn't receive anything.

my code:

<script>
    jQuery(document).ready(function(){     
        jQuery(".adminpnlnshbutton").click(function(){
            var usermail = jQuery('#uemail').val();
            var userkey = jQuery('#ukey').val();
            var dataString = 'usermail='+ usermail + '&userkey='+ userkey;
            $.ajax({
                type: "POST",
                url: "http://www.myremotedomain.co.uk/check.php",
                data: dataString,
                crossDomain: true,
                dataType: 'html',
                success: function(data) {
                    alert (data);
                }
            });
        });
    });
</script>

And check PHP:

$m = $_POST['usermail'];
$k = $_POST['userkey'];
$s = " | ";
echo $m . $s . $k;

As WordPress plugin:

<?
    add_action('admin_menu', 'test_plugin_setup_menu');

    function test_plugin_setup_menu(){
            add_menu_page( 'Test Plugin Page', 'Tes Plugin', 'manage_options', 'test-plugin', 'test_init' );
    }

    function test_init(){
        if (is_user_logged_in()) { 
?>
    <input name="uemail" type="text" id="uemail" value="email" />
    <input name="ukey" type="text" id="ukey" value="activation key" />
    <div class="adminpnlnshbutton">SEND</div>
    <script>
        jQuery(document).ready(function(){     
            jQuery(".adminpnlnshbutton").click(function(){
                var usermail = jQuery('#uemail').val();
                var userkey = jQuery('#ukey').val();
                var dataString = 'usermail='+ usermail + '&userkey='+ userkey;
                $.ajax({
                    type: "POST",
                    url: "http://www.myremotedomain.co.uk/check.php",
                    data: dataString,
                    crossDomain: true,
                    dataType: 'html',
                    success: function(data) {
                    alert (data);
                    }
                });
            });
        });
    </script>
<?
    }
    }
?>

any idea why I can't receive the data inside my plugin?

  • 写回答

1条回答 默认 最新

  • dongyumiao5210 2015-10-23 13:06
    关注

    Solved... i had to add jquery

    function pw_loading_scripts_wrong() {
        echo '<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>';
    }
    add_action('admin_head', 'pw_loading_scripts_wrong');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 彩灯控制电路,会的加我QQ1482956179
  • ¥200 相机拍直接转存到电脑上 立拍立穿无线局域网传
  • ¥15 (关键词-电路设计)
  • ¥15 如何解决MIPS计算是否溢出
  • ¥15 vue中我代理了iframe,iframe却走的是路由,没有显示该显示的网站,这个该如何处理
  • ¥15 操作系统相关算法中while();的含义
  • ¥15 CNVcaller安装后无法找到文件
  • ¥15 visual studio2022中文乱码无法解决
  • ¥15 关于华为5g模块mh5000-31接线问题
  • ¥15 keil L6007U报错