1

ページ url.php を読み込んでおり、$x を url.php に渡したいと考えています。

var myid=mydata.id;
   $.ajax({
                         url:'url.php'
                         ,async:     true
                         ,cache:     false
                         , data : 'post_field=' + myid
                         ,dataType:  'html'
                         ,success:   function(data){
                           $('body').html(data);
                           FB.XFBML.parse();
                         }
                       }
                             );

url.php で

<?php
$myid=$_POST[myid];
echo "myID is : <br>";
echo myid;
?>

ここで何が問題なのですか?

エラーが発生します:

<br />
<b>Notice</b>:  Use of undefined constant myid - assumed 'myid' in <b>/opt/lampp/htdocs/FB/ec2/url.php</b> on line <b>2</b><br />
<br />
<b>Notice</b>:  Undefined index: myid in <b>/opt/lampp/htdocs/FB/ec2/url.php</b> on line <b>2</b><br />
myID is : <br><br />
<b>Notice</b>:  Use of undefined constant myid - assumed 'myid' in <b>/opt/lampp/htdocs/FB/ec2/url.php</b> on line <b>4</b><br />
myid<html>
4

2 に答える 2

1

ポスト値を渡すために...使用

$.ajax({
                         url:'url.php'
                         ,async:     true
                         ,cache:     false
                         ,dataType:  'html'
                         , data : 'post_field=' + $x  
                         ,success:   function(data){
                           $('body').html(data);
                           FB.XFBML.parse();
                         }
                       }
                             );

             }

jqueryを使用していて、フォーム入力を投稿したい場合は、次のことができます

var data = $('#my_form').serialize();

$.ajax({
                         url:'url.php'
                         ,async:     true
                         ,cache:     false
                         ,dataType:  'html'
                         , data : data  
                         ,success:   function(data){
                           $('body').html(data);
                           FB.XFBML.parse();
                         }
                       }
                             );

                 }
于 2013-10-19T07:45:02.987 に答える