我在我的网站中使用了一个多选下拉列表。这工作正常,我们可以从该列表中选择多个选项。但我只想从该列表中选择 3 个选项。是否可以为此设置限制? ?
我正在使用来自http://www.aleixcortadellas.com/main/2009/03/20/492/的代码
我在我的网站中使用了一个多选下拉列表。这工作正常,我们可以从该列表中选择多个选项。但我只想从该列表中选择 3 个选项。是否可以为此设置限制? ?
我正在使用来自http://www.aleixcortadellas.com/main/2009/03/20/492/的代码
使用jQuery和以下点击功能,它会有所帮助
$(document).ready(function()
{
$('#slectboxid option').click(function()
{
var items = $(this).parent().val();
if (items.length > 3) {
alert("You can only select 3 values at a time");
$(this).removeAttr("selected");
}
});
});
编辑:在最新的 jQuery 库中不推荐使用 use.prop()
而不是.removeAttr()
,.removeAttr()
在formsubmit.php
第 3 行更改为以下行:
if (isset($options) && count($options) == 3) {
然后使用以下内容修改第 26 行:
echo 'Please select exactly 3 options';