这是弹出框的代码:
<?php
$getBtsid = $_REQUEST['uid'];
$btsid = substr($getBtsid, 0, -1);
?>
<center>
<?php
conFunc($db); // Connection Function
$congestedsite = mysql_query("SELECT * FROM `rollout_tracker` WHERE `site_id` LIKE '%".$btsid."'");
while($rows = mysql_fetch_array($congestedsite))
{
echo "<b>BTS ID:</b> " . $btsid . "<br />";
echo "<b>Sector ID:</b> " . substr($getBtsid, -1) . "<br />";
}
echo "<br /><br /><br />";
echo '<a href="javascript:window.close();">CLOSE WINDOW</a>';
?>
这就是这个 POPUP BOX 的名称:
echo "<a href=javascript:popcontact('btsdetails.php?uid=" . $row["bs_id"] . "')>" . $row['bs_id'] . "</a>";
我的 JavaScript 函数如下:
function popcontact(URL)
{
var popup_width = 600;
var popup_height = 400;
var day = new Date();
var id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+popup_width+',height='+popup_height+'');");
}
虽然这段代码可以工作,但它以某种方式影响了我的其他 JavaScript 代码。
我不明白原因。可能,我在这段代码中遗漏了一些东西。
谁能帮我解决这个问题?请?