老实说,我不知道从哪里开始。我知道如何使用基本的html,但我必须从数据库中提取问题,但我觉得这种方式要复杂得多。
令人困惑的是,我需要使用for循环来显示所有顶级问题。然后当他们为顶级问题选择“是”时,它会显示一个较低级别的问题。现在我只显示顶级问题,因为我不知道如何解锁较低级别的问题。
这是我的HTML代码。
<!doctype html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
jQuery(function($){
// Prevents errors in old IE.
if(!window.console || !window.console.log) window.console = {log: function(){}};
// Enable debugging for complex logic.
var debug = true;
function checkConditions(inputs, views){
views.each(function(){
var view = $(this);
var conditions = view.attr('data-view-conditions').split(',');
var display = true;
// Loop over all required conditions to be met.
for(var i = 0; i < conditions.length; i++){
var name = conditions[i].split(':')[0];
var value = conditions[i].split(':')[1];
var input = inputs.filter('[name="' + name + '"]:checked');
if(debug) console.log('\nRecalculating view conditions.');
if(!input.length){
display = false;
if(debug) console.log('View not show as no :checked input with the name "' + name + '" was found.');
}else{
if(value != undefined && input.val() != value){
display = false;
if(debug) console.log('View not show as no :checked input with the name "' + name + '" has the value of "' + input.val() + '". Value needed was: "' + value + '".');
}
}
}
if(display){
view.css({display: 'block'});
}else{
view.css({display: 'none'});
}
});
}
$('form').each(function(){
var form = $(this);
var inputs = form.find('input[type="checkbox"], input[type="radio"]');
var views = form.find('[data-view-conditions]');
// Recalculate which views to be shown each time the inputs change.
inputs.on('change', function(e){
checkConditions(inputs, views);
});
// Check conditions to set up required view state on page load.
checkConditions(inputs, views);
});
});
</script>
<!--<link href="css/bootstrap.min.css" rel="stylesheet">-->
<meta charset="utf-8">
<title>Submit a Ticket</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.4.2/forms-min.css">
<style>
.myForm {
margin-left: auto;
margin-right: auto;
max-width: 768px;
}
</style>
</head>
<body>
<form name="ticket1" class="pure-form pure-form-stacked myForm" action="flashpoint_processing.php" method="post">
<h2>Submit A Ticket</h2>
<legend> Your Details </legend>
<label>
<span>First Name: </span>
<input id="FirstName" name="FirstName" type="text" placeholder="" class="input-xlarge" required>
</label>
<label>
<label>
<span>Last Name: </span>
<input id="LastName" name="LastName" type="text" placeholder="" class="input-xlarge" required>
</label>
<label>
<span> Business Name </span>
<input id="Busname" name="Busname" type="text" placeholder="" class="input-xlarge">
</label>
<label>Phone</label>
<input id="Phone" name="Phone" type="text" placeholder="" class="input-xlarge" required>
<label>Extension</label>
<input id="Ext" name="Ext" type="text" placeholder="" class="input-small">
<label> E-mail</label>
<input id="email" name="email" type="text" placeholder="" class="input-xlarge" required>
<label>Preferred Method of Contact</label>
<input type="radio" name="contact" id="contact-0" value="Phone" checked="checked">
Phone
<input type="radio" name="contact" id="contact-1" value="Email">
Email
<label>
<legend>Issue</legend>
<?
$topq = array();
$topid = array();
$results = mysql_query("select questions, ID from tbl_questions where top=1");
while($row = mysql_fetch_array($results)) {
$topq[] = $row['questions'];
$topid[] = $row['ID'];
};
for($i=0;$i<count($topq);$i++){
echo "<label>";
echo $topq[$i];
echo "</label>";
echo " <input type=\"radio\" name=\"question+$i\" id=\"$i\" value=\"1\" checked=\"checked\">No
<input type=\"radio\" name=\"question+$i\" id=\"$i+1\" value=\"2\">Yes";
echo $topid[$i];
echo "<br>";
};
?>
<br>
<input type="submit" name="ticket" value="Submit">
</form>
这是我想要做的一个例子。 http://jcsites.juniata.edu/students/bookhjr10/flashpoint/test6.html
如果我们能够对问题进行硬编码,我可以轻松地完成这些问题,但他们希望将其从数据库中删除。
答案 0 :(得分:0)
Jquery会改变你的生活。您可以为每个单选按钮设置事件侦听器,然后在change事件中,执行ajax调用以将新项目从服务器加载到数组中,然后简单地遍历该数组并生成html。然后你可以使用.html()方法将生成的html注入选定的div:)