簡體   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