如果单击某些图像,我想将选项更改为选择。option的值是参数的唯一ID。我想使用 jQuery,但我是初学者,我不知道如何使用。现在我有这个:
$(document).ready(function () {
$('img').click(function(){
$("option:selected").removeAttr("selected");
$('option[value="' + $(this).attr("alt") + '"]').attr('selected', true);
});
});
但它不起作用。所有来源都在这里http://jsfiddle.net/EKaKw/2/。最好回答 jsfiddle。提前谢谢。