multiselect选中,将multiselect中的一些特定选项设置为禁用和选中

I have a multiselect box having some options which i am able to select or disable via jquery, but i am not able to make them do both at the same time. How can i do that via jquery ??

Here's what i was doing - JSFiddle

In this example i am selecting an option on load and after that disabling it, but the option is still de selectable. I want to keep it selected and disabled all the time.

For now i am using click method to keep it selected by adding this line:

$('#multiSelect').click(function()

{$('#multiSelectoption[value="three"]').attr('selected',true);});

EDIT:

People are posting the solution where we select the option again on click, which i already have posted in my question. What i wanted to know is that if there exist some better solution as this one does not look good.

解决方案

js fiddle:

jquery:

//disabling on load:

$('#multiSelect option[value="three"]').prop('disabled', true);

$("#multiSelect option").on('click',function() {

$('#multiSelect option[value="three"]').prop('selected',true);

});

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值