生成唯一的产品ID

时间:2014-11-23 09:57:12

标签: javascript html uuid

我有一个页面,我在我的网站上收到捐款。我银行的API要求我为每笔交易生成一个唯一的订单ID。如何在我的代码中使用javascript实现这一点?

我正在使用的代码如下所示。

Please enter the amount you wish to donate and click on the pay button. Thank you

<form id="&quot;form1”">
  <div>

  Amount:<input id="txtAmt" type="text" />

  </div>
</form>
<script src="https://cipg.diamondbank.com/cipg/MerchantServices/UPaybutton.ashx?mercId=xxxxx&amp;CurrencyCode=566" type="text/javascript">
</script>
<script type="text/javascript">
  upay_settings.setAmountField('txtAmt');
  upay_settings.setOrderId('31-Augdd-2014'); // This is the id I'd want to randomize
  upay_settings.setProduct('Donation');
  upay_settings.setEmail('xxx@xxx.org');
</script>

1 个答案:

答案 0 :(得分:1)

Math.random().toString(36).substring(7);