※ 引述《j4bteddd (teddy)》之铭言:
: 各位大大好 小弟是一个刚学写程式的初学者 很抱歉可能会有人觉得小弟的问题很浅很蠢
: 但是小弟研究好多天 始终没有达到想要的需求 所以才会上来发问(小弟在这网站也是新
: 手,如果发问不恰当请见谅!!)
: 想请问各位大大,1.在下面的程式码中要如何才能检查每一题的radio都有选择,并且至
: 少一个选择'感兴趣'呢? 2.另外java写出来的应该填在下面的"这里1"还是"这里2"呢?
: (网页总共会有30篇文章,每篇文章都有感兴趣和不感兴趣的选项)
: 以下是我的程式码(此程式码并不是由我一人所写)
: <form name="form1" onsubmit="这里1" method="post" action="Step3_2_SD.php>
: <?php
: mysql_query("SET NAMES UTF8");
: $c = 1;
: $anchor=1;
: for($i=0;$i<count($SUN_total);$i++)
: {
: $result = mysql_query("SELECT * FROM reference WHERE RID=".$SUN_total[$i]); //
: 呼叫出同学喜好的文章文献
: while($row = mysql_fetch_array($result))
: {
: echo "</br><a name='a".$anchor."'></a>";
: $anchor++;
: echo "<label><input type='radio' name='doc[]$i'
: onclick=\"location.href='#a".$anchor."'\" value='".$row['RID']."'
: id='".$row['RID']."' style='font-size:15px;'><strong>感兴趣
: </strong></label></a>";
: echo "</br>";
: echo "<label><input type='radio' name='doc[]$i'
: onclick=\"location.href='#a".$anchor."'\" value='no' id='no'
: style='font-size:15px;'><strong>不感兴趣</strong></label></a>";
: echo "</br>";
: echo "<a ".$row['RID']."' style='color:#1A98C1;font-weight:800; '>$c.
: ".$row['RTI']."<span class='st-arrow'></span></a>";
: echo "<div class='st-content-inner' id='content'>";
: // echo "<p style='font-size:15px;'><strong>Abstract</strong></p><p
: style='font-size:15px;'>".$row['RAB']."</p>";
: echo "<p style='font-size:15px;'><strong>Journal or book title:
: </strong>".$row['RJT']."</p>";
: echo "<p style='font-size:15px;'><strong>Author
: name:</strong>".$row['RAU']."</p>";
: echo "<p style='font-size:15px;'><strong>Issue:</strong>".$row['RDA']."</p>";
: echo "<p
: style='font-size:15px;'><strong>Abstract:</strong>".$row['RAB']."</p>";
: echo "</div></li></br>";
: }
: $c++;
: }
: ?>
: <p align="center"><a id="a31"><input class="button" id=".$row['RID']."
: type="submit" name="submit" onclick="这里2" value="确定" ><input
: class="button" type="reset"></p>
请问各位大大,我写了以下的程式,不知道对不对
function chu()
{
var countT=0;
var a=document.getElementByName("doc");
for(var i=0;i<document.form1.doc.length;i++)
{
if (!document.form1.doc[i].elements[1].value=="no")
{
countT++;
if(document.form1.doc[i].checked && countT>0)
{
return true;
}
else
{
alert("尚未填写完成,或请检查是否至少一篇文章为感兴趣的");
return false;
}
}
}
另外我测试了好多次document的那些想要试试看到底如何才能取道我想要的东西,可是试了几百次都无法