Jump to content
  • 0

Проблемка!


brm
 Share

Question

Есть такая вот функция,которая делает перебор элементов

var x1,x2,x3;
var anwer = new Array();


function goTo()
{

for (x1; x1< 5; x1++)
{
for (x2; x2< 4; x2++)
{
for (x3; x3< 4; x3++)
{
if(x1 == anwer[x1] && x2 == anwer[x2] && x3 == anwer[x3])
document.write("Ваш вариант '+x1+', '+x2+', '+x3+' ");
}
}
}
}

</script>

и такая вот форма,от куда берутся значения

</form name="Comp11">
<pre><Span class="h">
Вопрос?</span>
<Span class="input">
<input type="radio" name="comp11" onClick="x1=1">a

<input type="radio" name="comp11" onClick="x1=2">b

<input type="radio" name="comp11" onClick="x1=3">c
</span></pre>



<pre><Span class="h">
Вопрос2?</span>
<Span class="input">
<input type="radio" name="comp12" onClick="x2=1">aa

<input type="radio" name="comp12" onClick="x2=2">bb

<input type="radio" name="comp12" onClick="x2=3">cc

<input type="radio" name="comp12" onClick="x2=4">ee
</span></pre>



<pre><Span class="h1">
Вопрос3?</span>
<Span class="input1">
<input type="radio" name="comp13" onClick="x3=1">aaa

<input type="radio" name="comp13" onClick="x3=2">bbb

<input type="radio" name="comp13" onClick="x3=3">ccc

<input type="radio" name="comp13" onClick="x3=4">ddd
</span></pre>


<input type="button" value="Дальше >>" onclick="goTo()">
</form>

и Проблема в том что не выводит сообщение, с выбраном вариантом( Например: Ваш вариант : 2 , 1 , 4)!...не ошибок не пишет ...без эмоций!

Из за чего это может быть?

Спасибо!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Вот вам простой вариант

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title></title>
<script type="text/javascript">

var rememberIt = function ( node ) {
try {
if ( !node.form.answers ) node.form.answers = {};
node.form.answers[ node.name ] = node.value;
} catch ( e ) { };
};

var showAnswers = function ( node ) {
try {

var answerText = "";
for ( var i in node.form.answers ) answerText += ( i+ " = " + node.form.answers[ i ] + "\n" );
alert( answerText );
} catch ( e ) { };
};

</script>

</head>
<body>

<form>

<h4>Вопрос 1</h4>
<div>
<label><input type="radio" name="q1" value="1" onclick="rememberIt( this );"> Ответ 1</label>
<label><input type="radio" name="q1" value="2" onclick="rememberIt( this );"> Ответ 2</label>
<label><input type="radio" name="q1" value="3" onclick="rememberIt( this );"> Ответ 3</label>
</div>

<h4>Вопрос 2</h4>
<div>
<label><input type="radio" name="q2" value="1" onclick="rememberIt( this );"> Ответ 1</label>
<label><input type="radio" name="q2" value="2" onclick="rememberIt( this );"> Ответ 2</label>
</div>

<input type="button" onclick="showAnswers( this )" value="Next">

</form>

</body>
</html>

Изучайте.

Link to comment
Share on other sites

  • 0

Код можно улучшить. Так как онклик функция всегда одинаковая, то ее можно присвоить через JS. Правда, если известно, что среди данных радиобатонов нет каких-нибудь управляющих радиобатонов.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy