繁体   English   中英

在React对话框模型中打开iframe时,锚定标签href不起作用

[英]Anchor tags href isn't working when iframe is opened in a react dialog model

我们已经在模型对话框中打开了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> onclick上,应导航到<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> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM