标签: jquery cakephp
我正在使用CakePHP 2.4.4。我有多个具有相同选项的选择框。基本上它们是动态生成的选择框。我想要一个 选项应该只选择一次。我选择了禁用选项。但它不合适,因为如果用户想要更改选择 这是不可能的。
怎么做?
被修改
$('.select_user').change(function (){ $(this).find('option:selected').prop('disabled', true); });
这里select_user是选择框的类