<img src="img.jpg" id="try" width="200px" height="100px" alt="Loading">
<input type="radio" name="round" value=0 >
<input type="radio" name="round" value=1>
<input type="radio" name="round" value=2>
var a = document.getElementById('try') ;
var b = document.getElementsByName('round') ;
var c = ['trophy','check','Hello'] ;
for(var i = 0 ; i < b.length ; i++){
b[i].addEventListener('click', function () {
a.src = c[i]+'.jpg' ;
} ,false);
}
我想点击单选按钮而不是更改图像。图像名称存储在数组中,这将通过addEventlistener函数附加,但它不起作用。
答案 0 :(得分:0)
使用相同的Html,您可以对脚本进行修改,如下所示
var c = ['trophy','check','Hello'] ;
$('input[name="round"]').on('click',function(){ // bind event to all radio buttons at once
$('#try').attr('src',c[$(this).attr('value')]+'.jpg'); //on click take the value of the radio button and then use it to get value from array and set as source to img
//alert($('#try').attr('src'));
});
答案 1 :(得分:0)
带循环,当你的点击回调触发,变量提升时,它将始终返回c中的最后一个元素。使用闭包将有所帮助。
for(var i = 0 ; i < b.length ; i++){
(function(){
var img = c[i];
b[i].addEventListener('click', function () {
a.src = img +'.jpg' ;
} ,false);
}())
}