Paypal按钮定制类似于

时间:2017-10-26 10:33:27

标签: jquery css twitter-bootstrap paypal express-checkout

我需要在网站上插入2个paypal按钮:升级按钮和续订按钮。 根据新的paypal参考,我使用

paypal.Button.render

但定制非常有限。

 style: {
            label: 'checkout',
            size:  'small',    // small | medium | large | responsive
            shape: 'pill',     // pill | rect
            color: 'gold'      // gold | blue | silver | black
        },

我需要创建按钮作为bootsrap

<button class="btn btn-danger"><i class="fa fa-shopping-cart" aria-hidden="true"></i> RENEW</button>

但PayPal按钮位于iframe中。

是否可以使用jQuery和css来实现这种效果?

2 个答案:

答案 0 :(得分:0)

Try use this js library

frame.$('button').addClassName('btn btn-danger');

希望这有助于你

答案 1 :(得分:0)

不是出于安全原因,你不能改变任何来自其他来源的东西。比如iframe。 如果你需要这样做,我记得在rest-API你可以使用服务器端编码来修改?或者不要使用rest-API来制作它,更改为传统表单提交到paypal,您可以自定义按钮。