这是目前表格的样子......
<select onchange="viewForm()">
<?php
$db = mysqli_connect('xxxxxx.com', 'xxxx', 'xxxx', 'xxxxx');
$sql = "SELECT title, fid FROM total";
$result = $db->query($sql);
while ($row = $result->fetch_assoc()){
$sid = $row['fid'];
$stitle = $row['title'];
echo '<option value="'.$sid.'" >'.$stitle.'</option>';
}
?>
</select>
然后这里是javascript函数......
function viewForm(){
window.location.replace("http://website.com/main.php?sid=IDwouldGoHere");
}
我要做的是选择一个下拉选项之一,在通过GET传递“ SID”值的同时将其重定向到新页面。现在重定向正在工作,但我找不到将 sid 值传递给 javascript 函数的方法。