gpt4 book ai didi

php - 如何让 jQuery 从 mysql_fetch_array 获取 PHP 参数?

转载 作者:行者123 更新时间:2023-11-29 14:13:38 24 4
gpt4 key购买 nike

如何让 jQuery 从 mysql_fetch_array() 获取 PHP 参数?以下是我的部分代码,欢迎任何建议。

PHP

$query=mysql_query($sql) or die(mysql_error());
while($list=mysql_fetch_array($query)){
print"
<div id=\"#$list[id]\" class=\"f\">

jQuery

switch(id) {
case '#$list[id]':

(我正在尝试通过此方法使用 Fancybox https://stackoverflow.com/a/7844043/1575921 )

最佳答案

为什么不使用 $.ajax() 呢?

http://api.jquery.com/jQuery.ajax/

$.ajax({
url: 'yourphpcode.php',
success: function(data) {
// all your $list variables are saved in data
// so you can work from here with your data array
}
});

php:

$query = mysql_query($sql) or die(mysql_error());
while($list = mysql_fetch_array($query)){
echo $list['id'];
}

你很可能会从 php 得到类似这样的信息:

1
2
3
4
5
6
7
etc.

使用 javascript,您可以将其拆分为:

dataArray = data.split(”\n“);

所以你的最终代码是:

 $.ajax({
url: 'yourphpcode.php',
success: function(data) {
dataArray = data.split("\n");
}
});

关于php - 如何让 jQuery 从 mysql_fetch_array 获取 PHP 参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13056738/

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