我有一个名为quiz的数据库表(quest,op1,op2,op3,op4,answer,num),除num之外的所有字段都是varchar类型,num是主键。现在在php页面中,我需要将问题(<p>
元素)作为任务字段动态检索,四个单选按钮的值由此数据库的op(n)字段指定。请解释我如何做到这一点。
HTML:
全选
<html>
<head>
<script language="javascript">
function loadXMLDoc()
{
var q=Math.floor((Math.random()*3)+1);
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
[color=#8000FF]document.getElementById("op1").innerHTML=xmlhttp.responseText;
document.getElementById("op2").innerHTML=xmlhttp.responseText;
document.getElementById("op3").innerHTML=xmlhttp.responseText;
document.getElementById("op4").innerHTML=xmlhttp.responseText;[/color]//this is the code i need help //with
}
}
xmlhttp.open("GET","questions.php?num="+q,true);
xmlhttp.send();
}
</script></head>
<h1 align='center'><b>Object oriented programming-#1</b></h1>
<h2 align='center'>Supriya Raheja<h2>
<title>quiz has started</title>
<body>
<div style="text-align:left">
<table border="1">
<tr>
<td width="25%"><table border="0">
<tr>
<td><button type="button">Goto Q1</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q2</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q3</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q4</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q5</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q6</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q7</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q8</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q9</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q10</button></td>
<td><input type="checkbox">
</tr>
<tr>
<td><button type="button">Goto Q11</button></td>
<td><input type="checkbox">
</tr>
</td>
</table>
<td width="1000px">
<input type="radio" name="op1" value="" ></br>
<input type="radio" name="op2" value="" ></br>
<input type="radio" name="op3" value="" ></br>
<input type="radio" name="op4" value="" ></br>
<button style="text-align:bottom" type="button" onclick="loadXMLDoc()">Change
Content</button>
</td>
</tr>
</table>
</body>
</html>
PHP
<?php
$q=$_GET["q"];
$con = mysqli_connect('localhost','root','ayushigarg','quiz4');
if (!$con)
{
die('Could not connect: ' . mysqli_error($con));
}
mysqli_select_db($con,"quiz4");
$sql="SELECT * FROM quiz WHERE num = '".$q."'";
$result = mysqli_query($con,$sql);
//echo "<table border='1'>
$row = mysql_fetch_array($result)
echo '{"questionTxt" : "' . $row['quest'] .
'", "answ1" : "' . $row['op1'] .
'", "answ2" : "' . $row['op2'] .
'", "answ3" : "' . $row['op3'] .
'", "answ4" : "' . $row['op4'] .
'", "hint" : "' . $row['hint'] . '"}';
mysqli_close($con);
?>
?>
我希望将这些answers1,answers2等值分配给op1,op2等值,然后点击更改内容按钮...请帮助
答案 0 :(得分:0)
document.getElementById("op2").innerHTML
设置id为op2的元素的innerHTML,例如:
<h1 id="op2">inner HTML</h1>
如果要设置字段的值,则需要:
document.getElementById("op2").value = "new value";
但是我建议使用jquery,你会减少痛苦!
我知道它没有被要求但是要说清楚我可以告诉你如何使用jquery(未经测试):
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<script>
$(document).ready(function() {
$('#btn1').click(function(){
var q=Math.floor((Math.random()*3)+1);
var myurl = "questions.php?num="+q;
$.getJSON(myurl, function(data) {
$('#qs1').html(data.questionTxt);
$('#op1').val(data.answ1);
$('#aw1').html(data.answ1);
$('#op2').val(data.answ2);
$('#aw2').html(data.answ2);
$('#op3').val(data.answ3);
$('#aw3').html(data.answ3);
$('#op4').val(data.answ4);
$('#aw4').html(data.answ4);
});
});
});
</script>
<h1 id="qs1"></h1>
<input type="radio" id="op1" name="op" value="" ><span id="aw1"></span></br>
<input type="radio" id="op2" name="op" value="" ><span id="aw2"></span></br>
<input type="radio" id="op3" name="op" value="" ><span id="aw3"></span></br>
<input type="radio" id="op4" name="op" value="" ><span id="aw4"></span></br>
<button style="text-align:bottom" type="button" id="btn1" value="go">
</body>
</html>