我正在尝试使用jQuery将一些数据发布到PHP文件中。如果我通过表单发送数据一切正常,但我希望它通过jQuery在后台发送。点击功能有效($.post
除外),因为我使用alert()
对其进行了测试,当我注释掉$.post
行时,其他所有内容都有效。如果我没有注释掉$.post
行,则最后两行不起作用。
以下是我在admin.js
中存储的javascript:
$(document).ready(function(){
$(".admin-refresh").click(function () {
var movieID = $(this).prev().text();
$.post("actions.php", {refreshMovie: yes, movieID: movieID});
$(this).removeClass('btn-warning');
$(this).addClass('btn-success');
});
});
以下是actions.php
的部分代码。如果我通过表单发布数据,此文件正常工作。
//Refresh Movie Details
if ($_POST['refreshMovie']) {
$movieID = $_POST['movieID'];
以下是来自active-movies.php
的代码,其中包含激活javascript的按钮。
<button class="btn admin-refresh"><i class="icon-refresh"></i> Refresh</button>
文件存储为ROOT/admin/active-movies.php
,ROOT/admin/actions.php
和ROOT/includes/js/admin.js
。
感谢您提供任何帮助!
答案 0 :(得分:4)
至少有一个问题在这里。
{refreshMovie: yes, movieID: movieID}
应该是
{refreshMovie: "yes", movieID: movieID}
答案 1 :(得分:2)
尝试向$.post()
(回调)添加第三个参数,例如:
$.post("actions.php", {refreshMovie: yes, movieID: movieID}, function(response){
// actions.php should return some data to check if the
// action was successful
// that data will be available as a variable ("response")
if ( response == 'success' ) {
// do something
} else {
// do something else
}
});
答案 2 :(得分:-1)
只需将参数名称括在引号中,因为JS会认为movieID:movieID
与Kung Fu Panda:Kung Fu Panda
类似。
{'refreshMovie': 'yes', 'movieID': movieID}