2012-09-22 25 views
1

我在哪打开灯箱其HREF链接如何使用jquery/mootools在iframe中添加“滚动=否”?

<a class="modal" rel="{handler: 'iframe', size: {x: 500, y: 400}}" href="http://localhost/site/index.php">Site</a> 

。我想从iframe中删除卷轴,我发现这个'"scorlling=no"'。我找不到在iframe中添加此属性的方法。 我想这

jQuery(document).ready(function($) { 
    $(".modal").click(function() { 
     $("#sbox-content iframe").attr("scrolling","no") 
    }); 
}); 

但它不工作。 这是可能的,或者最好的办法是做到这一点?
谢谢。

回答

0

指定overflow: hiddeniframe作品。 演示http://jsfiddle.net/6RGxh/


指定overflow: hidden在您localhost/site/index.php文件<html>元素。

+0

谢谢这是工作。但有一件事我想知道我们可以从我们这边做一些事情,而不添加任何东西在localhost/site/index.php – Irfan

+0

请参阅我的更新.. – techfoobar

+0

这不适用于chrome.http:// stackoverflow.com/a/9678294/902161我想这样做,我们必须将其添加到localhost/site/index.php,因为这是工作。 – Irfan

0

你可以试试这个:

<a class="modal" rel="{handler: 'iframe', size: {x: 500, y: 400},scrolling:no}" href="http://localhost/site/index.php">Site</a> 

不知道,但你可以给它一个镜头。

+0

尝试像你所建议的一样,但结果相同。 – Irfan

0

尝试使用site/index.php而不是http://localhost/site/index.php,iframe在浏览器中受到保护 - 尤其是当它们显示来自其他域的页面时。

+0

页面打开但滚动在那里。我不想垂直滚动。 – Irfan