JQuery 控制 radio 只读

一、想让radio只读,就是想radio不可以修改。有一种场景是:让没有选中的radio不可以修改。代码如下:

$("input[name='tempProduct.isMustInvoice'][value='0']").attr("disabled",true);

 将值为0的radio设置不可以修改,这种设置的好外是:选中的radio值可以传入后台进行操作。

二、设置可修改的代码:

$("input[name='tempProduct.isMustInvoice'][value='0']").attr("disabled",false);

 三、将所有的radio设置为只读

$("input[name='tempProduct.isMustInvoice']").each(function(){
	$(this).attr("disabled",true);
});

  

参考信息:

相关推荐