6

我想从指向 Javascript 的链接中传递一个 PHP get 变量,这样我就可以打开一个新的较小窗口,其中包含传递给 URL 的值中的适当内容。我在下面尝试这样做,但我不能...我真的很感谢你的帮助。下面的代码生成图像超链接,每个超链接都有来自数据库的 id,所以当点击图像时,应该打开一个新窗口,但应该将 ID 传递给 javascript window.open 方法......我试着这样做用AJAX根据get变量加载内容但我做不到!

<?php
require('../database/connect.php');
database_connect();
$query = "select * from Entertainers";
$result = $connection->query($query);
$row_count =$result->num_rows;

for($i = 1; $i <= $row_count; $i++)
  {
   $row = $result->fetch_assoc();


?>
<?php  echo "<a href='' onclick='window.open(profile.php?id=".$row['ID'].")'><img src ='../".$row['Picture']."' width='100' height='100' /> </a>"; } ?>
4

2 回答 2

2

不要忘记在 Javascriptopen函数中引用 url。另外,您是否考虑printf()过用于输出?

$link =
'<a href="" onclick="window.open(\'profile.php?id=%d\')">'
. '<img src="../%s" width="100" height="100" /></a>' . PHP_EOL;

for($i = 1; $i <= $row_count; $i++) {
    $row = $result->fetch_assoc();
    printf($link,$row['ID'],$row['Picture']);
}

%d表示一个小数,并%s表示上述字符串中的一个字符串(因此是$link)。另一个提示:如果您没有特别的理由使用 for 循环,则使用 while 循环可以使您的代码更简洁、更短。

while ($row = $result->fetch_assoc()) {
    printf($link,$row['ID'],$row['Picture']);
}
于 2012-12-22T05:20:00.220 回答
0

当您的脚本在页面上呈现 HTML 时,URL参数 to不会呈现window.open为.string

您的代码当前在页面上呈现的内容:

<a href='' onclick='window.open(profile.php?id={some_id})'><img src ='../".$row['Picture']."' width='100' height='100' /> </a>"; } ?>

在客户端解析URLprofile.php?id={some_id}时,它不是字符串。

试试这个:

<?php  echo "<a href='' onclick=\"window.open('profile.php?id=" . $row['ID'] . "');\"><img src ='../".$row['Picture']."' width='100' height='100' /> </a>"; ?>
于 2012-12-22T05:20:05.213 回答