我有一个输入字段(源语言),当我单击其中一种源语言时,我想要它,但具有相同文本的目标语言被禁用
到目前为止我已经这样做了,但是当我单击源语言时它会一直禁用目标语言
我每次都想重置它..不要总是听事件
这是演示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());
});
});