1

我想从如下所示的跨度中发布数据,但是单击时没有任何反应。我在以下范围内发布“4”。我不知道如何发布这个或语法。跨度。

<span style="color:#B00" id="PidClick">4</span>

使用这个。

$('#PidClick').click(function() {
console.log('PidClick event:')
   $.ajax({
    dataType:'json',
    data: {data:Pid},
    type:"POST",
    url:"test.php"
    }).done(function(reply){
    console.log('reply is' + reply) 
        alert (reply.name)

})
});

和 php 存在。//// 也是我的 '.$Pid.' 变量对吗?我不确定这是否正确。

<?php
require_once 'db_conx.php';
if(isset($_POST["Pid"])) {
$id = preg_replace ('#[^0-9 ]#i', '', $_POST['Pid']);
$Result = mysql_query("SELECT * FROM profiles WHERE Pid = '.$Pid.' ") or die (mysql_error());
while($row = mysql_fetch_array($Result)){
$result = array();
$result['pemail'] = $row['pemail'];
$result['name'] = $row['name'];
echo json_encode($result);
}
}
mysql_close($con);
?>

Console Errors:- 
PidClick event: 'Type error: Type error'
4

5 回答 5

1

首先,您需要像其他人所说的那样为 Pid 分配一个值,一旦我们为 Pid 分配了一个值。由于在 PHP 文件中您试图获取一个名为 Pid 的变量,因此我们希望将其按原样传递。

这是更新的 JQuery:

jQuery(document).ready(function($) {
    $('#PidClick').click(function() {
        var Pid = $(this).text();
        $.ajax({
            type: 'POST',
            url: 'test.php',
            dataType: 'json',
            data: {
                Pid: Pid
            },
            success : function(data){
                console.log('reply is' + data.reply);
                alert(data.reply);
            },
            error : function(XMLHttpRequest, textStatus, errorThrown) {
                alert('There was an error.');
            }
        });
    });
});

其次,我写了一个小测试用例 PHP 文件。只是为了确保一切正常。再一次,您需要确保在来回传递变量时保持变量相同;在上面的 jquery 示例中,您会注意到我使用“data.reply”检索信息,在下面的 PHP 文件中,我将数据分配给也名为“reply”的变量。我还包括了一些保护措施,以确保该文件只能通过 ajax 请求访问。

<?php

// only work if requested with ajax
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) &&
        strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {

    if(isset($_POST['Pid'])) {
        $return['reply'] = 'The input was '.$_POST['Pid'];
    }
    else {
        $return['reply'] = 'No input detected';
    }

    echo json_encode($return);

} else {
    die('direct access is forbidden');
}
?>

这是我使用的 html 文件:

<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title>pid example</title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width">

        <script src="jquery.js"></script>
        <script src="ajax.js"></script>
    </head>
    <body>
        <span style="color:#B00" id="PidClick">4</span>
    </body>
</html>

此外,在尝试执行此示例时,请确保您的所有文件权限和路径都是正确的。在这种情况下,所有文件都应位于同一目录中。

于 2013-11-04T06:55:08.363 回答
1

用户.html()获取内部 html

所以添加$('#PidClick').html();

$('#PidClick').click(function() {
  var Pid = $('#PidClick').html();
  Pid = parseInt(Pid);
   $.ajax({
data: 'Pid='+Pid,
type:"POST",
url:"test.php"
}).done(function(reply){
console.log('reply is' + reply) 
    alert (reply.name)

})
});
于 2013-11-04T06:14:24.183 回答
1

使用$('#PidClick').text()or$('#PidClick').html()获取 span 的内部文本。

$('#PidClick').click(function() {
  var Pid = $('#PidClick').html();
  ..............
});
于 2013-11-04T06:16:20.117 回答
1

您可以分配 Pid 值吗?

var Pid = $(this).html();
于 2013-11-04T06:16:34.763 回答
1
$('#PidClick').click(function() {
   var Pid = $('#PidClick').text();
    $.ajax({
       dataType:'json',
       data: 'Pid='+Pid,
       type:"POST",
       url:"test.php"
  }).done(function(reply){
    console.log('reply is' + reply) 
    alert (reply.name)
  })
});

js提琴手示例

于 2013-11-04T06:59:15.940 回答