0

我有一个具有滚动功能的按钮,我想添加另一个具有相同功能的按钮。我可以这样做吗?这是php

<?php if($this->API->modules('cart')) : ?>
            <div id="btnCart" data-url="index.php?lang=<?php echo $lang; ?>&amp;tmpl=cart"><strong>Cart</strong></div>
            <?php endif; ?>

这是jQuery

// cart button
    if(document.id('gkPopupCart')) {
        var btn = document.id('btnCart');

        window.addEvent('scroll', function(e) {
            var scroll = window.getScroll().y;
            var max = document.id('gkMainWrap').getSize().y;
            var final = 0;
            if(scroll > 70) {
                if(scroll < max - 122) {
                    final = scroll - 50;
                } else {
                    final = max - 172;
                }
            } else {
                final = 20;
            }
            btn.setStyle('top', final + "px");
        });
4

1 回答 1

0
 <? if($this->API->modules('cart')) {
 echo "<div id='btnCart' data-url='index.php?lang=$lang&amp;tmpl=cart'> 
       <strong>Cart</strong></div>";} ?>

我不明白为什么不呢?你试过了吗?

于 2013-07-15T05:18:35.857 回答