gpt4 book ai didi

php - 脚本在 Ajax 返回值中不起作用

转载 作者:行者123 更新时间:2023-11-30 18:12:58 24 4
gpt4 key购买 nike

我正在显示项目 ID 和标题。还有一个链接“显示该成员的项目”。单击它时,它将显示该用户的项目。我正在为此使用 ajax。有一个用于检测的脚本单击复选框的顺序。这对第一个列出的项目正常工作。但不适用于 ajax 返回的项目

<table id="result" width="100%">
<?php
if($tot1>0){
while($row5=mysql_fetch_array($result1))
{
?>
<tr class="detail9txt" height="30">
<td width="2%"><input type="checkbox" name="item" value="<?=$row5[item_id];?>"></td>
<td align="center" width="12%" style="vertical-align:baseline;"><a href=""><?=$row5['item_title'];?></a>
</td>
</tr>
<tr><td colspan="6" align="right"><a href="javascript:callfunc(<?= $row5[user_id]; ?>)" style="font-size:10px;">Show items for this Member</a></td></tr>
<?php
}}
?>
</table>
<input name="hidden_field" type="hidden" id="hidden_field"/>
<input type="image" name="submit" src="images/submito.gif" value="submit">

脚本代码和ajax是

<script type="text/javascript">
function callfunc(str)
{

//alert(str);
if (str.length==0)
{
document.getElementById("result").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("result").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getdetails.php?cid="+str,true);
xmlhttp.send();
}
</script>
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script type="text/javascript">
<!--
$(document).ready(function () {

var array = [];
$('input[name="item"]').click(function () {

if ($(this).attr('checked')) {
// Add the new element if checked:
array.push($(this).attr('value'));
alert(array);
//hidden_field.value = array.join(',');
//hidden_field.value = array.join(',');
document.getElementById('hidden_field').value=array.join(',');
}
else {
// Remove the element if unchecked:
for (var i = 0; i < array.length; i++) {
if (array[i] == $(this).attr('value')) {
array.splice(i, 1);
}
}
}


});
});
//-->
</script>

getdetails.php代码为

<?php
require 'include/connect.php';
$cid=$_GET['cid'];

$sql="select * from table where user_id=$cid";
$res=mysql_query($sql);
$tot=mysql_num_rows($res);
if($tot>0){
while($row=mysql_fetch_array($res))
{
echo '<tr class="detail9txt" height="30">
<td width="2%"><input type="checkbox" name="item" value="'.$row[item_id].'"></td>
<td align="center" width="12%" style="vertical-align:baseline;">
<a href="">'.$row['item_title'].'</a>
</td> </tr>';
}}
?>

最佳答案

您没有在 ajax 生成的代码中调用 onclick 函数。在 getdetails.php 中改变

<input type="checkbox" name="item" id="item" value="'.$row[item_id].'">

<input type="checkbox" onclick="javascript:call_check()" name="item" id="item" value="'.$row[item_id].'">

此外,任何 html 标签的 id 属性都应该是唯一的。这可能不会产生任何问题,但绝对不是一个好的做法。

关于php - 脚本在 Ajax 返回值中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14117694/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com