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

前端 未结 1 590
孤城傲影
孤城傲影 2021-01-28 16:05

We have opened an iframe in model dialog. In the iframe we are loading a document. The document is also and html page. The

1条回答
  •  Happy的楠姐
    2021-01-28 16:23

    var modal = document.getElementById('myModal');
    
    // Get the button that opens the modal
    var btn = document.getElementById("infoshare");
    
    // Get the  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  (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;
    }
    
      2. WILL YOUR INFORMATION BE SHARED WITH ANYONE?
    
    

    0 讨论(0)
提交回复
热议问题