How to determine if the location of the iframe has changed?

前端 未结 2 1356
轮回少年
轮回少年 2021-01-25 03:45

I have got an iframe that displays a form from an external site,once the form is submitted it is redirected to another page that has got a thankyou message.Is it posiible to kno

2条回答
  •  梦毁少年i
    2021-01-25 03:56

    function chkCounter(counterValue) {
           var tmp=document.getElementById('txtCounter').value;
           document.getElementById('txtCounter').value=tmp+counterValue;
    
           if(document.getElementById('txtCounter').value>1)
           {
            document.getElementById("btnClose").disabled = false;
           }
        }
    
    
    
    

提交回复
热议问题