我在网上寻找了一些例子,但我无法为任何资金提供资金。
如何在fancybox中上传新的html?
$('#Create').click(function() {
$.fancybox({
What should be the content over here?
(lets say i want to load stackoverflow.com)
});
答案 0 :(得分:11)
该文档在网站上是正确的,您可以使用iframe:
$("#iframe").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
<强> HTML 强>
<a href="http://www.example?iframe">This goes to iframe</a>
or
<a id="iframe" href="http://www.example">This goes to iframe</a>
您可以在此处找到所有相关信息:http://fancybox.net/howto