1

我有一个 JavaScript 脚本,在其中我将元素添加到数组(id、值),然后从它们创建复选框。它背后的想法是允许用户选择一项运动,它显示为一个复选框,取消选中它,它就会从屏幕上消失。因此,当页面加载时,已经选择了一些运动,这意味着用户不能再次添加它们,但可以删除其中的任何一项并再次添加。我的问题是当我删除它时从数据库中添加的第一个,我无法再次添加它;我在脚本中输入了警告消息,脚本告诉我它没有被删除,而实际上它已经被删除了。我究竟做错了什么?

 <script type='text/javascript'>
    //<![CDATA[
     $(window).load(function () {

         var db = [{ id: 6, value: "Running"},{ id: 1, value: "Baseball" }];
         var allVals = [];

         $.each(db, function (k, v) {
             $("#results").append("<label class=\"wList\"><input checked=\"checked\" class=\"wList-chk\" name=\"wList[]\" type=\"checkbox\" value=\""
             + v.id
             + "\">"
             + v.value
             + "</label>");
             allVals.push(v.id);
         });

         $(function () {
             var sports = [{ id: 1, value: "Baseball" },
                        { id: 2, value: "Soccer" },
                        { id: 3, value: "Basketball" },
                        { id: 4, value: "Volleyball" },
                        { id: 5, value: "Tennis" },
                        { id: 6, value: "Running" },
                        { id: 7, value: "Swimming"}];

             $("#sports").autocomplete({
                 source: sports,
                 select: function (event, ui) {

                     if ($.inArray(ui.item.id, allVals) == -1) {
                         allVals.push(ui.item.id);
                         $("#results")
                                     .append("<label class=\"wList\"><input checked=\"checked\" class=\"wList-chk\" name=\"wList[]\" type=\"checkbox\" value=\""
                                     + ui.item.id
                                     + "\">"
                                     + ui.item.value
                                     + "</label>");
                         $('input.wList-chk[type="checkbox"][value="' + ui.item.id + '"]').parent().effect('highlight', {}, 1500);
                         ui.item.value = "";
                     }
                     else {
                         //ALERT TO SEE IF ELEMENT IS STILL IN ARRAY
                         alert("item already in ... but should not be in");
                         ui.item.value = "";
                         $('input.wList-chk[type="checkbox"][value="' + ui.item.id + '"]').parent().effect('highlight', {}, 1500);
                     }
                 }
             });
         });

         $(document).on("change", ".wList-chk", function () {
             if ($(this).attr('checked')) {
                 return;
             } else {
                 var thisVal = $(this).val();
                 var index = $.inArray(thisVal, allVals);
                 allVals.splice(index, 1);
                 $(this).parent('.wList').remove();
             }
         });
     });//]]>  

</script>

这是一个完整的 jsfiddle:http: //jsfiddle.net/hdfse/

4

1 回答 1

2
var thisVal = $(this).val();

应该改为

var thisVal = parseInt($(this).val());

因为$(this).val()返回 astring和 in var index = $.inArray(thisVal, allVals);,这index将得到-1,然后allVals.splice(index, 1);将删除意外项。

这是jsfiddle http://jsfiddle.net/hdfse/8/

于 2013-01-17T17:20:24.017 回答