0

我正在使用 jquery 多选插件。现在我正在检查用户是否使用下面的代码选择了任何复选框。

function fntemp()
{
var values = $("select").val();
alert(values);
if(!values){
alert("Please select atleast one value from the dropdown.");    
 }
}

但是当我们点击“Check All”链接时这不起作用。有什么建议么?

4

2 回答 2

3

应该管用:

var test = $("select option:selected").length;
于 2012-11-26T15:04:57.793 回答
2

查看文档,您可以使用以下方法获取所有选中复选框的数组

$("select").multiselect("getChecked");

我假设您因此可以执行以下操作:

if ($("select").multiselect("getChecked").length == 0)
{
   alert("Please select atleast one value from the dropdown.");
}
于 2012-11-26T15:06:37.030 回答