javascript - 想知道为什么我的 JQuery 数组循环没有正确设置我的 href

标签 javascript jquery html arrays checkbox

所以让我告诉你我在做什么。这是我正在做的一些作业,现在已经卡住了。我正在创建一个页面,您可以在其中从一堆不同的复选框中进行选择。根据复选框的不同,您可以单击我已编程的“显示资源”按钮,打开一个新窗口,其中包含相应的复选框以显示其值,它们的值也是这些特定资源的 URL。听起来很容易吧?这是事物的基本结构。

//this is the main function that is making an array of the checked check boxes and displying them on the new window, problem is I am only able to set the href attibute to only the first array item...
$(function() {
    $(":checkbox").change(function() {
      var arr = $(":checkbox:checked").map(function() { return $(this).val(); }).get();
            $("#messagepop").html('<a id="resourceLink">' + arr.join('</a><br><a id="resourceLink">') + '</a>');
      for (var i = 0; i < arr.length; i++){
        $("#resourceLink").attr('href', arr[i]);
      }
    });
  });

//these are functions for the new window
  function deselect(e) {
  $('.pop').slideFadeToggle(function() {
    e.removeClass('selected');
  });    
  }

  $(function() {
    $('#contact').on('click', function() {
      if($(this).hasClass('selected')) {
        deselect($(this));               
      } else {
        $(this).addClass('selected');
        $('.pop').slideFadeToggle();
      }
      return false;
    });

    $('.close').on('click', function() {
      deselect($('#contact'));
      return false;
    });
  });

  $.fn.slideFadeToggle = function(easing, callback) {
    return this.animate({ opacity: 'toggle', height: 'toggle' }, 'fast', easing, callback);
  };
.messagepop {
  background-color:#FFFFFF;
  border:1px solid #999999;
  cursor:default;
  display:none;
  margin-top: 15px;
  position:absolute;
  text-align:left;
  width:394px;
  z-index:50;
  padding: 25px 25px 20px;
}

label {
  display: block;
  margin-bottom: 3px;
  padding-left: 15px;
  text-indent: -15px;
}

.messagepop p, .messagepop.div {
  border-bottom: 1px solid #EFEFEF;
  margin: 8px 0;
  padding-bottom: 8px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="slide4">
    <h1>Resources</h1>
    <p>(Select the resources you wish to receive information about. Click on the "Show Resources" button when you are ready)</p>
    <form action="">
      <input type="checkbox" value="https://google.com/search?q=CareerPreparation">Career Preparation<br>
      <input type="checkbox" value="https://google.com/search?q=CollegeAdvising">College Advising<br>
      <input type="checkbox" value="https://www.google.com/search?q=financial+aid">Financial Aid<br>
      <input type="checkbox" value="https://www.google.com/search?q=fitness+recreation">Fitness & Recreation<br>
      <input type="checkbox" value="https://www.google.com/search?q=health+services">Health Services<br>
      <input type="checkbox" value="https://www.google.com/search?q=housing">Housing<br>
      <input type="checkbox" value="https://www.google.com/search?q=library">Library<br>
      <input type="checkbox" value="https://www.google.com/search?q=parking">Parking<br>
      <input type="checkbox" value="https://www.google.com/search?q=housing">Scholarships<br>
      <input type="checkbox" value="https://www.google.com/search?q=student+employment">Student Employment<br>
      <input type="checkbox" value="https://www.google.com/search?q=student+organization">Student Organizations<br>
      <input type="checkbox" value="https://www.google.com/search?q=tutoring">Tutoring Support<br>
      <input type="checkbox" value="https://www.google.com/search?q=writing">Writing Support<br>
    </form>

   
<div class="messagepop pop">
  <p><a class="close" href="/">Close</a></p>
  <div id="messagepop" >
    
  </div>
</div>

<a href="/contact" id="contact">Show Resources</a>

</div>

所以我遇到的问题是我无法正确设置新的 <a> 上的 href 属性在新的 div 窗口中显示的标签。所有这一切的关键在于,我必须创建一个包含选中复选框的数组,并将它们链接到适当的资源。

所以真正的问题是,我错过了什么?我可以看到该数组具有正确的元素链接,那么为什么它们没有显示在其余显示的元素上。希望这是有道理的,如果我在这里向您展示的内容令人困惑或者我需要澄清,请告诉我,谢谢!

最佳答案

您正在为多个元素设置相同的 ID,这是一个 SIN。

      $("#messagepop").html('<a class="resourceLink">' + arr.join('</a><br><a    class="resourceLink">') + '</a>');

      for (var i = 0; i < arr.length; i++){
        $(".resourceLink").eq(i).attr('href', arr[i]);
      }

关于javascript - 想知道为什么我的 JQuery 数组循环没有正确设置我的 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33705420/

相关文章:

javascript - 按设定间隔设置计数

javascript - d3.js:平移限制

jquery - 禁用时日期选择器值为空,jquery

javascript - 将 jQuery 存储在一个变量中然后提醒它

javascript - Angular.js : ng-repeat OrderBy fails to order values

javascript - 通过单击 LinkBut​​ton 将 BoundField 的值传递给 Javascript 函数

javascript - 使用 eyecon bootstrap datepicker 显示 'Full-month-name yyyy'

jquery - 如何使用浏览器调整 jquery ui 对话框的大小

jquery - 复选框中的错误已禁用

html - <form> 是否比 <tr> 有效?