本文介绍了如何使用jQuery检查下拉列表的选定索引是否为0或-1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用jquery检查dropdownlist的选定索引是否为0或-1?

How to check if selected index of dropdownlist is not 0 or -1 using jquery?

推荐答案

我必须检查所选索引是否大于0,所以我使用了:

I had to check to see if selected index was greater than 0, so I used:

if($("select option:selected").index() > 0) {
  alert($("select option:selected").index());
}

这篇关于如何使用jQuery检查下拉列表的选定索引是否为0或-1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:29