使用复选框启用PayPal按钮

时间:2013-07-15 14:51:47

标签: javascript html checkbox paypal payment

在编码方面,我有点像nooobie,但在这里,希望有人可以提供帮助。我被要求使用两个paypal按钮设置付款页面。当您第一次到达页面时,需要禁用按钮,直到他们选中复选框,这基本上意味着他们已经接受了ToS,并且可以继续进行付款。我尝试过在网上找到的所有东西,但似乎没有什么对我有用。

这是我的HTML代码......

    <!--CheckBox Validation-->

    <input id="one" type="checkbox" /> I have read and agree to the Terms &amp; Conditions


    <!--PayPal Button-->

    <center>
    <table>
<tr>
    <td>
    <form action="https://www.paypal.com/cgi-bin/webscr" onsubmit="return confSubmit();"              method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="2RU2ND26N2564">
    <input type="image" src="http://graphicasylum.com/images/Boton_100_Chico.png" border="0" name="submit" alt="PayPal, la forma más segura y rápida de pagar en línea.">
    <img alt="" border="0" src="https://www.paypalobjects.com/es_XC/i/scr/pixel.gif" width="1" height="1">
    </form>
    </td>

    <td>
<a class="submit disabled"
    <form action="https://www.paypal.com/cgi-bin/webscr" onsubmit="return confSubmit();" method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="SAK96Y5CBTFUL">
    <input type="image" src="http://graphicasylum.com/images/Boton_50_Chico.png" border="0" name="submit" alt="PayPal, la forma más segura y rápida de pagar en línea.">
    <img alt="" border="0" src="https://www.paypalobjects.com/es_XC/i/scr/pixel.gif" width="1" height="1"></a>
    </form>
    </td>
</tr>
    </table>
    </center>

这是我的js代码。

    <script type="text/javascript">// <![CDATA[
    function confSubmit() {
    if(!document.getElementById("accept").checked) {
    alert("Please read and accept the Terms and Conditions in order to continue.");
    return false;
    }
    } // ]]></script>

如果我完全失去了(女巫,我很确定自己),我愿意再朝这个方向努力! 在此先感谢您的帮助。 :)此外,我不得不把我的2个paypal按钮放在桌子上,因为这是我知道如何将它们并排放置并以网页为中心的唯一方式。

1 个答案:

答案 0 :(得分:0)

一目了然......

if(!document.getElementById("one").checked) {