我已经在这方面工作了好几天,我已经谷歌并重新搜索,但我似乎无法找到究竟在寻找什么。我有一个菜单选项卡,由php脚本填充如下:
<?php include 'db_connector.php';
$result = mysqli_query($con,"SELECT * FROM os_scope");
while($row = mysqli_fetch_array($result)) {
echo "<button type='radio'>"."<li>"."<div class='title'>"."<a href='#myPanel' >".$row['name']."</a>"."</div>"."</li>"."</button>";
}
?>
结果的输出是:
Billing
Custom
Customer
Product
当我选择其中任何一个,即开帐单时,会打开#mypanel
我想每次选择一个项目,例如Billing,应该将值“Billing”发布到面板,然后我可以使用此值来查询MySQL数据库。其余项目也一样。
任何建议都将不胜感激。提前谢谢。
答案 0 :(得分:0)
没有<button type='radio'>
使用<input type='radio' value='value'>
试试这个:
echo "<li><input type='radio' value='".$row['name']."' /><div class='title'><a href='#myPanel' >".$row['name']."</a></div></li>";
此外,没有理由在整个地方执行此操作:"."
只需将字符串作为字符串即可。这就是字符串最擅长的。
答案 1 :(得分:0)
这正是我所寻找的,
<!DOCTYPE html>
<html>
<body>
<?php include 'db_connector.php';
$result = mysqli_query($con,"SELECT * FROM os_scope");
while($row = mysqli_fetch_array($result)) {
$row['name'];
echo "<input type='radio' name='os' value=".$row['name']." id='myRadio'>";
}
?>
<p>Click the "Try it" button to display the value of the radio button.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementsByName('os');
var rate_value;
for(var i = 0; i < x.length; i++){
if(x[i].checked){
rate_value = x[i].value;
break;
}
}
document.getElementById("demo").innerHTML = rate_value;
}
</script>
</body>
</html>