我有一個輸入字段(源語言),當我點擊其中一種源語言時,同樣文本的目標語言被禁用選擇相同的輸入時禁用輸入字段?
我做到目前爲止,但它保持禁用目標語言時我點擊源語言
什麼,我想重置,每次..不作總是聽事件
這裏是演示http://jsfiddle.net/ezNxU/
// change the target language according to the source language
$('#source').change(function() {
var option_source = $('select#source option:selected').text();
$('select#target option').each(function() {
if ($(this).text() == option_source) $(this).prop("disabled", true);
console.log($(this).text());
});
});
絕對是最好的! – 2013-03-27 13:24:02
最好簡單的感謝 – osos 2013-03-27 13:34:57