我想将使用网址的人重定向到我网站上的网页。问题是页面是从TinyBox创建的弹出窗口。所以基本上,我希望整个网站加载,然后打开弹出窗口,但我需要用一个网址来做这个。有人能帮我吗?这是我的代码:
<ul class="floatset">
<li onclick="pauseAllVideos(); TINY.box.show({iframe:'/flash',boxid:'frameless',width:800,height:600,fixed:false,maskid:'bluemask',maskopacity:40,closejs:function(){closeJS()}})" class="footer_image_text1"><a class="flash"></a>Flash</li>
</ul>
答案 0 :(得分:0)
您正在寻找类似的东西:
$('.floatset li:first-child').click(function() {
event.preventDefault();
pauseAllVideos();
//copied the below from your original question, not familiar with TinyBox
TINY.box.show( {iframe:'/flash', boxid:'frameless', width:800,height:600, fixed:false,maskid:'bluemask', maskopacity:40,closejs:function(){closeJS()}})
})
然后,您可以在锚点上设置href
,而无需在用户点击它时将其导航。