How to pass parameters through iframe from parent html?

前端 未结 3 692
無奈伤痛
無奈伤痛 2020-12-03 03:06

I have a html page in which I am setting the src for an iframe programmatically. How can I pass parameters through the iframe src and get them in the child html?

Bel

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-03 03:13

    On the main page simply pass parameters as follows

    function myFunction(){
    $('#myIframe').attr('src', "myIframeRequest.html?param1=value1¶m2=value2"); 
    } 
    

    In Iframe

    You can use a script to get the desired parameter value from parameters passed to page.

    
    

    Then you can fetch the value of desired parameter like this

    var param1 = getParamValue('param1');
    

提交回复
热议问题