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 Matlab安装yalmip和cplex功能安装失败
  • ¥15 加装宝马安卓中控改变开机画面
  • ¥15 STK安装问题问问大家,这种情况应该怎么办
  • ¥15 更换了一个新的win10系统,再下载VS时碰到的问题,是C++组件的?
  • ¥15 关于罗技鼠标宏lua文件的问题
  • ¥15 halcon ocr mlp 识别问题
  • ¥15 已知曲线满足正余弦函数,根据其峰值,还原出整条曲线
  • ¥20 无法创建新的堆栈防护界面
  • ¥15 sessionStorage在vue中的用法
  • ¥15 wordpress更换域名后用户图片头像不显示