mainīgajam "test" tiek noteikta vērtība "0". Tālāk ar onchange vērtība tiek mainīta atkarībā kurš option tiek izvēlēts. vērtība mainās, un alert() to parāda, taču pēc tam rādot mainīgo ar dcument.write(); rāda oriģinālo vērtību "0", nevis jauno. Kā To labot?
<script type="text/javascript">
var test = 0;
</script>
<select onchange="var test = this.options[this.selectedIndex].value; alert(test);">
<option value="0"></option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<script type="text/javascript">
document.write(test);
</script>
Question
klavsr
Sveiki,
mainīgajam "test" tiek noteikta vērtība "0". Tālāk ar onchange vērtība tiek mainīta atkarībā kurš option tiek izvēlēts. vērtība mainās, un alert() to parāda, taču pēc tam rādot mainīgo ar dcument.write(); rāda oriģinālo vērtību "0", nevis jauno. Kā To labot?
Paldies!
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.