gpt4 book ai didi

javascript - 在单个网页上一次显示调查一个语句的有效方法

转载 作者:搜寻专家 更新时间:2023-10-31 08:30:28 24 4
gpt4 key购买 nike

所以我是 HTML/CSS 和网络开发的新手,我正在设计一个网站来举办基于在线的 Likert 量表调查。我最初设置了网站,因此当参与者单击链接时,整个调查将显示在页面上,提交按钮位于页面底部。但是,我的教授希望它的设计方式是一次只显示一个调查陈述,并且用户可以点击“上一个”或“下一个”来浏览调查。

我已经编写了一些代码来实现这一点,但对我来说它似乎效率低得令人难以置信。必须有更好的方法来完成我想要完成的事情!!

这是我一直采用的方法示例:

<html>
<body>
<script type="text/javascript">
function showNext(divIdShow,divIdHide){
document.getElementById(divIdShow).style.display="block";
document.getElementById(divIdHide).style.display="none";
}
function showPrevious(divIdShow,divIdHide){
document.getElementById(divIdShow).style.display="block";
document.getElementById(divIdHide).style.display="none";
}
</script>

<div id="div1" class="center">
<table align="center" style="font-size: 14px" bgcolor="CCCCCC">
<tr><td>A survey statement goes here<td></tr></table>
<table align="center" style="font-size: 14px" bgcolor="CCCCCC">
<tr><td><input type="radio" name="s1" value="1">Strongly Disagree (1)</td>
<td><input type="radio" name="s1" value="2">Disagree (2)</td>
<td><input type="radio" name="s1" value="3">Neutral (3)</td>
<td><input type="radio" name="s1" value="4">Agree (4)</td>
<td><input type="radio" name="s1" value="5">Strongly Agree (5)</td>
<td><input type="radio" name="s1" value="0" checked><i>not answered</i></td>
</tr>
</table><br>
<button type="button" disabled>Previous</button>
<button type="button" onclick="showNext('div2','div1')">Next</button>
</div>

<div id="div2" class="center" style="display:none">
<table align="center" id="t1" style="font-size: 14px" bgcolor="CCCCCC">
<tr>Another statement goes here!</tr>
<tr><td><input type="radio" name="s2" value="1">Strongly Disagree (1)</td>
<td><input type="radio" name="s2" value="2">Disagree (2)</td>
<td><input type="radio" name="s2" value="3">Neutral (3)</td>
<td><input type="radio" name="s2" value="4">Agree (4)</td>
<td><input type="radio" name="s2" value="5">Strongly Agree (5)</td>
<td><input type="radio" name="s2" value="0" checked><i>not answered</i></td>
</tr>
</table><br>
<button type="button" onclick="showPrevious('div1','div2')">Previous</button>
<button type="button" onclick="showNext('div2','div1')">Next</button>
</div>
</body>
</html>

同样,必须有更好的方法来做到这一点。如果我继续使用这种方法,以后删除/添加或重新组织调查报表将是一件非常痛苦的事情。

任何链接或提示将不胜感激!

****解决方案****我最终想出了一个在 php 中使用循环/回声的解决方案。这是我用来完成任务的粗略(不漂亮)代码示例:

<html>
<body>

<script type="text/javascript">
function go(){
document.getElementById('state0').style.display = "block";
document.getElementById('state0').scrollIntoView();
}
function showNext(divIdShow,divIdHide){
document.getElementById(divIdShow).style.display="block";

document.getElementById(divIdHide).style.display="none";
}
function showPrevious(divIdShow,divIdHide){
document.getElementById(divIdShow).style.display="block";

document.getElementById(divIdHide).style.display="none";
}
</script>


<button type='button' onclick='go()'>GO</button>

<!--<button type='button' onclick="go()">go</button>-->
<?php
$numElements=5;
$array = array("This is the first statement", "This is the second statement","This is the third statement","This is the fourth Statement", "Last statement here");

for($i=0;$i<$numElements;$i++){

$divId='state'.$i;
$sId='q'.$i;
$nextInt=$i+1;
$prevInt=$i-1;
$nextDiv='state'.$nextInt;
$curDiv='state'.$i;
$prevDiv='state'.$prevInt;
if($i==0){
echo "<div id='$divId' class='center' style='display:none'>
<table align='center' style='font-size: 14px' bgcolor='CCCCCC'>
<tr><td>$array[$i]<td></tr></table>
<table align='center' style='font-size: 14px' bgcolor='CCCCCC'>
<tr><td><input type='radio' name='$sId' value='1'>Strongly Disagree (1)</td>
<td><input type='radio' name='$sId' value='2'>Disagree (2)</td>
<td><input type='radio' name='$sId' value='3'>Neutral (3)</td>
<td><input type='radio' name='$sId' value='4'>Agree (4)</td>
<td><input type='radio' name='$sId' value='5'>Strongly Agree (5)</td>
<td><input type='radio' name='$sId' value='6'>No answer </td>
</tr>
</table><br>
<button type='button' disabled>Previous</button>
<button type='button' onclick='showNext(\"$nextDiv\",\"$curDiv\")'>Next</button>
</div>";}
else if($i==$numElements-1){
echo "<div id='$divId' class='center' style='display:none'>
<table align='center' style='font-size: 14px' bgcolor='CCCCCC'>
<tr><td>$array[$i]<td></tr></table>
<table align='center' style='font-size: 14px' bgcolor='CCCCCC'>
<tr><td><input type='radio' name='$sId' value='1'>Strongly Disagree (1)</td>
<td><input type='radio' name='$sId' value='2'>Disagree (2)</td>
<td><input type='radio' name='$sId' value='3'>Neutral (3)</td>
<td><input type='radio' name='$sId' value='4'>Agree (4)</td>
<td><input type='radio' name='$sId' value='5'>Strongly Agree (5)</td>
<td><input type='radio' name='$sId' value='6'>No answer </td>
</tr>
</table><br>
<button type='button' onclick='showPrevious(\"$prevDiv\",\"$curDiv\")'>Previous</button>
<button type='button' disabled>Next</button>
</div>";}
else{
echo "<div id='$divId' class='center' style='display:none'>
<table align='center' style='font-size: 14px' bgcolor='CCCCCC'>
<tr><td>$array[$i]<td></tr></table>
<table align='center' style='font-size: 14px' bgcolor='CCCCCC'>
<tr><td><input type='radio' name='$sId' value='1'>Strongly Disagree (1)</td>
<td><input type='radio' name='$sId' value='2'>Disagree (2)</td>
<td><input type='radio' name='$sId' value='3'>Neutral (3)</td>
<td><input type='radio' name='$sId' value='4'>Agree (4)</td>
<td><input type='radio' name='$sId' value='5'>Strongly Agree (5)</td>
<td><input type='radio' name='$sId' value='6'>No answer </td>
</tr>
</table><br>
<button type='button' onclick='showPrevious(\"$prevDiv\",\"$curDiv\")'>Previous</button>
<button type='button' onclick='showNext(\"$nextDiv\",\"$curDiv\")'>Next</button>
</div>"; }

}


?>

</body>
</html>

感谢所有提供帮助的人!!

最佳答案

虽然听起来很复杂,但我会这样简化它:

将所有问题作为键值对创建一个数组或json(例如问题 = [[1,“你喜欢 xy 吗?”],[2,“第二个问题],...],所有问题只有一个表并使用最初设置的函数数组的第一个条目作为第一个问题。单击上一个/下一个调用此函数浏览问题并将值保存在存储为的另一个数组中表上的数据属性。
就像一个小演示 Fiddle来演示这是如何工作的。

var questions = [[1, "how are you"],[2, "next one"],[3, "question number 3"]];

setFirstQuestion();

function setFirstQuestion(){
$(".question").text(questions[0][1]);
$(".question").data("current",[0][0]);
}

$("#next").click(function(){
setNextQuestion();
});

function setNextQuestion()
{
var current = $(".question").data("current");
$(".question").text(questions[current + 1][1]);
$(".question").data("current", current + 1);
}

这可以只在您的表格中设置问题,因此您可以只使用一个表格而不是 50 个表格。这不是完整的解决方案,只是建议如何完成,可以节省您的一些时间。

关于javascript - 在单个网页上一次显示调查一个语句的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26027947/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com