在反应对话框模型中打开 iframe 时锚标记 href 不起作用



我们在模型对话框中打开了一个iframe。在iframe中,我们正在加载document。该文档也是HTML页面。文档中的<a>标签没有导航到其href中提到的id

只是html文档中的示例。以下是<a>示例,

<a data-custom-class="link" href="#infoshare">
  2. WILL YOUR INFORMATION BE SHARED WITH ANYONE?
</a>
<p id="infoshare" style="font-size:15px;">
  <span style="color: rgb(0, 0, 0);">
    <strong>
      <span style="font-size: 19px;">
        <span data-custom-class="heading_1">
          2. WILL YOUR INFORMATION BE SHARED WITH ANYONE?
        </span>
      </span>&nbsp;
    </strong>&nbsp;
  </span>
</p>

<a>的闭合器应导航到<p>

不过,当浏览器中浏览URL时,它可以很好地工作。

,但在对话模型中不起作用。

var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("infoshare");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal 
btn.onclick = function() {
  modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}
.modal {
  display: none; 
  position: fixed;
  z-index: 1; 
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
<a data-custom-class="link"  id="infoshare">
  2. WILL YOUR INFORMATION BE SHARED WITH ANYONE?
</a>
<div id="myModal" class="modal">
  <!-- Modal content -->
  <div class="modal-content">
    <span class="close">&times;</span>
    <p>Some text in the Modal..</p>
  </div>
</div>

最新更新