我想发布如下所示的跨度数据,但点击后没有任何反应。 我在下一个范围内发布'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'
答案 0 :(得分: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)
})
});
答案 1 :(得分:1)
使用$('#PidClick').text()
或$('#PidClick').html()
获取范围的内部文字。
$('#PidClick').click(function() {
var Pid = $('#PidClick').html();
..............
});
答案 2 :(得分:1)
您可以指定Pid值
var Pid = $(this).html();
答案 3 :(得分: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>
此外,在尝试执行此示例时,请确保所有文件权限和路径都正确。在这种情况下,所有文件都应位于同一目录中。
答案 4 :(得分: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)
})
});