-1

我想在 iframe 的页脚中添加一个按钮,但如果有滚动条,它就无法隐藏。

可能吗?

4

1 回答 1

0
<body> 
<script>
$(document).ready(function() {
$(".various").fancybox({
    maxWidth    : 800,
    maxHeight   : 500,
    fitToView   : false,
    width       : '100%',
    height      : '100%',
    autoSize    : true,
    closeClick  : false,
    openEffect  : 'elastic',
    closeEffect : 'elastic',
    beforeShow: function () {
        if (this.title) {
            // New line
            this.title += '<br />';
            this.title += '<button class="btn btn-primary" id="enviar" name="enviar" type="submit">Cadastrar Produto</button>';
        }
    },


     helpers : {
        title : {
            type: 'inside'
        }
    } 


});



</script>
</body>
于 2013-02-21T16:35:56.670 回答