我有一个链接
<a class="modal" rel="{handler: 'iframe', size: {x: 500, y: 400}}" href="http://localhost/site/index.php">Site</a>
在灯箱中打开它的href。我想从 iframe 中删除卷轴,我发现了这个'"scorlling=no"'。我找不到在 iframe 中添加这个属性的方法。我试过这个
jQuery(document).ready(function($) {
$(".modal").click(function() {
$("#sbox-content iframe").attr("scrolling","no")
});
});
但它不起作用。这是可能的还是最好的方法是什么?
谢谢。