代码之家  ›  专栏  ›  技术社区  ›  Blues Clues

自动填充贝宝结账不工作

  •  7
  • Blues Clues  · 技术社区  · 7 年前

    我正试图在我的网站上实现自动填写贝宝结帐,但它没有得到我提供的国家。只有提交后才能得到数量。请参见下面的代码:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
       <div class="form-group">
            <input type="hidden" name="on0" value="Country">
            <label class="control-label">Country</label>
            <select name="os0" class="form-control">
                <option value="US">US</option>
            </select>
        </div>
    
        <div class="form-group">
            <input type="hidden" name="on0" value="Quantity">
            <label class="control-label">Quantity</label>
            <select name="os0" class="form-control">
                <option value="11 units">11 units $3,000.00</option>
                <option value="21 units">21 units $6,000.00</option>
                <option value="51 units">51 units $12,500.00</option>
            </select>
        </div>
    </form>
    
    0 回复  |  直到 7 年前