我在一个页面上有两个模式,(我正在使用引导程序);单击任何模式只会打开第一个.我不懂js;有html修复吗?

I#39;ve two modals on a page, (i#39;m using bootstrap); clicking on any modal opens only the first. I don#39;t understand js; is there an html fix?(我在一个页面上有两个模式,(我正在使用引导程序);单击任何模式只会打开第一个.我不懂js;有html修复吗?) - IT屋-程序员软件开发技
本文介绍了我在一个页面上有两个模式,(我正在使用引导程序);单击任何模式只会打开第一个.我不懂js;有html修复吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是第一个模态的代码;在接下来的两个模态中,所有变化都是内部的图像链接,但只有这些显示出来.

This is the code for the first modal; all that changes in the next two modals is the image links inside, but only these show up.

<div id="modallinkleft">
  <a href="#myModal" data-toggle="modal">
  <img src="mylinks/cp/117s.jpg">
  <img src="mylinks/cp/23s.jpg">
  <img src="mylinks/cp/08s.jpg">
  </a>
  <div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-body">
      <img src="mylinks/cp/117.jpg">
      <img src="mylinks/cp/23.jpg">
      <img src="mylinks/cp/08.jpg">
    </div>
    <div class="modal-footer">
      <button class="btn" data-dismiss="modal" aria-hidden="true">x</button>
    </div>
  </div>
</div>

推荐答案

每个modal应该被赋予一个不同的id并且每个链接应该定位到不同的模态 ID.所以应该是这样的:

Each modal should be given a different id and each link should be targeted to a different modal id. So it should be something like that:

<a href="#myModal" data-toggle="modal">
...
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>
...
<a href="#myModal2" data-toggle="modal">
...
<div id="myModal2" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>
...

这样,如果你点击第一个链接,它应该会弹出第一个模态,如果你点击第二个 - 会弹出第二个模态.

In this way, if you click the first link, it should pop-up the first modal and if you click the second - the second modal is popped up.

这篇关于我在一个页面上有两个模式,(我正在使用引导程序);单击任何模式只会打开第一个.我不懂js;有html修复吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
What should I consider before minifying HTML?(在缩小HTML之前,我应该考虑什么?)