如何使用自定义按钮类作为paypal立即购买按钮?

时间:2013-07-21 02:59:19

标签: html button paypal customization

这是为paypal按钮创建图像的当前html代码

<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif"     border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">

但我想使用我制作的自定义按钮类,看起来像这样

<a class="btn btn-reveal add-top-half" href="http://www.google.com">Buy Now!</a>

有没有办法使用自定义按钮类“btn btn-reveal add-top-half”来指向paypal支付页面?

1 个答案:

答案 0 :(得分:1)

从原始文件中删除src属性,然后将您的类添加到原始文件中。 这是它的外观。

<input class="btn btn-reveal add-top-half" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">