see this demo from jquery ui you have to hold down the Ctrl key to make multiple selections I really like the code but I don t want to force my visitor to press ctrl key I want the code to allow multiple selections without holding ctrl key
这是可能的。
see this demo from jquery ui you have to hold down the Ctrl key to make multiple selections I really like the code but I don t want to force my visitor to press ctrl key I want the code to allow multiple selections without holding ctrl key
这是可能的。
我在评论中向各位提出了问题,但我只想提出一个简单的甄选办法,以便你看到我的想法。
因此,基本上,你可以利用“jquery toggle()”效应滚动自己的选择。 当用户点击你时,如果他再次点击,就会去除 o子。
$(document).ready( function() {
$( ul#selectable li ).toggle( function() {
$(this).addClass( orange ); }, function() {
$(this).removeClass( orange ); } );
});
那么,你的工作就是把所有利害元素与 o格混杂的阶层混为一谈,将其置于一种形式上,或者不管你的最终目标是什么。 检查了这部法律,但你在要求所有可以选择的、在班级结束时具有range价值的内容。
代码低于一米,形成一个新阵列,然后将每个“单程”的(a)数值添加到其中。
var theSelections = new Array();
$( ul#selectable li[class$="orange"] ).each( function(i) {
theSelections[i] = $(this).text();
});
是的。 然而,执行过程中必须允许在第二次点击时将选定的物项连选。 你们只是需要稍微修改法典才能做到这一点。
关于所有项目的可选择(可选)
然后,你将需要在所有物品上做一个可以选取的(角角)。
这应当做到。