在VF页面中显示静态资源的HTML

时间:2015-06-24 07:37:52

标签: visualforce staticresource

我在静态资源中有一个HTML文件,我需要在其中一个部分中显示为Visualforce页面中的叠加层。

如何实现这一目标?我尝试直接包括,似乎没有工作

1 个答案:

答案 0 :(得分:0)

使用jQuery获得修复。

//Get the URL of the HTML Page
var pageURL = "{!$Resource.ResourceName}/html/PageName.html";

//Load the HTML Content to the element(based on ID or Class)
$('.target-element').load(pageURL);