簡體   English   中英

jQuery:元素未定義錯誤(但已定義)

[英]jQuery : Element not defined error (but defined)

我的頁面中有一些表格,它沒有硬編碼,
所有表格都有名稱和唯一ID。
但是在調用該表格時,控制台沒有被定義。
我想用jQuery提交表單,但表單未定義,
我嘗試過:

alert(jQuery("#paypal_form_-5").length);
//output is 0

document.getElementById('paypal_form_-5').submit();

等。但是不起作用.....

表格代碼

<form target="_blank" action="https://www.paypal.com/cgi-bin/webscr" name="paypal_form_-5" id="paypal_form_-5" method="POST">
            <input type="hidden" value="http://www.domain.com/2014/index.php?option=domain&amp;view=addon_payments&amp;type=return" name="return">
            <input type="hidden" value="2" name="rm">
            <input type="hidden" value="_xclick" name="cmd">
            <input type="hidden" value="rajnvr@rctech.org" name="business">
            <input type="hidden" value="USD" id="paypal_form_currency_code_-5" name="currency_code">
            <input type="hidden" value="http://www.domain.com/2014/index.php?option=domain&amp;view=addon_payments&amp;type=cancel" name="cancel_return">
            <input type="hidden" value="http://www.domain.com/2014/components/domain/views/addon_payments/paypal_ipn.php" name="notify_url">
            <input type="hidden" value="GOLD Membership" name="item_name">
            <input type="hidden" value="20" id="paypal_form_amount_-5" name="amount">
            <input type="hidden" value="http://www.domain.com/2014/components/domain/views/addon_payments/paypal_ipn.php" name="notify_url">
            <input type="hidden" value="001" name="item_number">
            <input type="hidden" value="2740" name="custom">
            <span id="paypal_price_title_-5" class="paypal_price_title">GOLD Membership&nbsp;20&nbsp;USD</span>
            <input type="button" onclick="send_request_to_paypal_express(-5);" value="Pay" name="button_-5">
</form>

在您的HTML下方添加JS或通過以下方式包裝JS:

$(document).ready(function(){/*Your code*/});

演示: http//jsfiddle.net/4c9p7/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM