-1

ページをペイパルにリンクし、次のようにコーディングしました

<div class="paypal">
    <h1><?php __('Please wait while we transfering you to the payment gateway.');?></h1>
    <?php echo $paypal->submit(__('Click here if this page appears for more than 5 seconds', true), $paypalData); ?>
    <script type="text/javascript">
        document.getElementById('frmPaypal').submit();
    </script>
</div>

ボタンの代わりにアニメーションGIF待機アイコンを配置する必要があります....

4

1 に答える 1

1

CakePHP を使用して画像を出力したい場合:

echo $this->Html->image('loading.gif', array('alt' => 'Loading'));

それ以外の場合は、HTML を使用できます。

<img src="loading.gif">
于 2013-02-28T12:29:12.643 に答える