最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

after selecting second checkbox, not appending to url along with first checkbox name - Stack Overflow

programmeradmin3浏览0评论
                    $(document).ready(function () {
      $('input[type=checkbox]').click(function (e) {
      var seasoning = '', tempArray = [];
      $('input[name="Brand[]"]:checked').each(function(){
          tempArray.push($(this).val());
      })
      if(tempArray.length !== 0){
         seasoning+='&Brand='+tempArray.toString();
         tempArray = [];
      }

      $('input[name="Origin[]"]:checked').each(function(){
          tempArray.push($(this).val());
      })
      if(tempArray.length !== 0){
         seasoning+='&Origin='+tempArray.toString();
      }


     window.location = "/example" + seasoning;

      });

    });

.

when i run above code, it appends brand name to url. when i select orign, the brand name disappears and origin name appends. i want brand name to still be there

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论