我想將選項更改爲select,如果我點擊某個圖像。選項的值是參數的唯一標識。我想使用jQuery,但我是初學者,我不知道如何。現在我有這個:使用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會是最好的。感謝提前。
小提琴更新! – Rajiv007