Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
722 views
in Technique[技术] by (71.8m points)

java - JSF tag that load HTML from external source

Is there any JSF tag that we can use it in our page to load an external HTML source and put it into the resulted page :

something like this :

<div id="stackOverFlowPageId">
    <custTag:includeExternalHTMLSource 
       url="http://www.stackoverflow.com" [elementToInclude="body"] />
</div>

When a client request the JSF page that contain this code ,the server will handle this and load the page and put it into the div stackOverFlowPageId and send the result to the client.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As you can make use of standard HTML tags in facelets too, just an iframe will do the work:

<div id="stackOverFlowPageId">
    <iframe src="http://www.w3schools.com" 
        height="100%" width="100%" />
</div>

Remember some sites do not enable to be included in frames for security reasons.

See also:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...