Embed part of website

后端 未结 3 1535
挽巷
挽巷 2021-02-10 08:36

I want to embed just this part on my website. How do I do that? I have tried with iframe and it shows me the whole page I just want the table!

3条回答
  •  离开以前
    2021-02-10 08:47

    If you do know the id of the div the table is in you can do something like this

    HTML

    Javascript

    var iframe = document.getElementById("iframe");
    var div = document.getElementById("PlaceToPutTable");
    div.innerHTML = iframe.contentWindow.document.getElementById("KnowDivName").innerHTML;
    

    Hope this helps.

提交回复
热议问题