我的代码在清除选择时遇到问题:
$('select').children(':selected').removeProp('selected');
我像这样绑定一个更改处理程序:
$('#categories').on('change', function(event) {
var category = $(this).children("option:selected").text();
...
});
这有效,除非我再次选择从中删除所选属性的选项category = ''
。
我肯定做错了什么。有人可以解释一下吗?