如何在 document.getElementById 中传递固定整数值

How can I pass a fixed integer value in document.getElementById

这是我的代码。我想使用固定整数值而不是“package_select”。我该怎么做...

<script>
      paypal.Buttons({
        createOrder: function(data, actions) {
          // This function sets up the details of the transaction, including the amount and line item details.
          return actions.order.create({
            purchase_units: [{
              amount: {
                value: document.getElementById("package_select").value
              }
            }]
          });
        },
        onApprove: function(data, actions) {
          // This function captures the funds from the transaction.
          return actions.order.capture().then(function(details) {
            // This function shows a transaction success message to your buyer.
            alert('Transaction completed by ' + details.payer.name.given_name);
          });
        }
      }).render('#paypal-button-container');
      //This function displays Smart Payment Buttons on your web page.
    </script>
          amount: {
            value: REPLACE_WITH_FIXED_INTEGER_VALUE
          }

https://developer.paypal.com/demo/checkout/#/pattern/client

查看完整演示