本文介绍了仅通过HTML禁用基于值*的选择选项!*的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要根据变量的值禁用选择选项。该值与选择选项值相似,并且需要禁用。



例如,

 <选择> 
< option>值a< / option>
< option>值b< / option>
< / select>

$ variable =<一些选择选项值>;

所以如果变量等于值a,那么它需要在选择选项中被禁用。 >

谢谢。

解决方案

>

  $(select option:contains('Value b'))。attr(disabled,disabled); 

  var variable =b
$(select option:contains('Value+ variable +'))。attr(disabled,disabled);
$(select)。prop(selectedIndex, - 1)


I need to disable a select option based on the value of a variable. The value is similar to one of the select option value and it needs to be disabled.

For ex,

<select>
<option>Value a</option>
<option>Value b</option>
</select>

$variable = <some select option value>;

So if variable is equal to Value a then it needs to be disabled in select option.

Thanks.

解决方案

With your current markup this will work:

$("select option:contains('Value b')").attr("disabled","disabled");

http://jsfiddle.net/CtqC6/

EDIT

http://jsfiddle.net/CtqC6/1/

var variable = "b"
$("select option:contains('Value " + variable + "')").attr("disabled","disabled");
$("select").prop("selectedIndex",-1)

这篇关于仅通过HTML禁用基于值*的选择选项!*的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 12:24