简体   繁体   中英

How to Embed a section from another website/webpage into my website?

How can I embed a section or a particular area from a website/web page to my website? Means, i want to display that section in my website.

You can use iframe to embed an entire page in to your web page like below.

<iframe src="http://www.google.com" width="100%" height="50%"></iframe>

If you want to embed just a section from a web page you can't do it easily using HTML and CSS. There will be cross site issue as well.

You can use screen scraping to get the html section from the source page and you can then update your page with that source html content. To do this you might need to use jquery and ajax. Also be careful about security and authorization issues since you are scraping third party web page.

What is Screen Scraping and How Does it Work?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM