member.html 994 B

12345678910111213141516171819202122232425
  1. <div class="eject_con">
  2. <div id="warning" class="alert alert-error"></div>
  3. <form method="post" id="cash_form" action="{:url('Sellermoney/withdraw_member')}">
  4. <dl>
  5. <dt><i class="required">*</i>{$Think.lang.sellermoney_withdraw_money}:</dt>
  6. <dd><input name="amount" type="text" oninput="value=value.replace(/[^\d]/g,'')" class="text w50" id="amount" maxlength="10" ><em class="add-on">
  7. <i class="iconfont">&#xe65c;</i></em> ({$Think.lang.sellermoney_avaliable_money}:<strong class="orange">{:floatval($store_avaliable_money)}</strong>&nbsp;&nbsp;{$Think.lang.ds_yuan})<span></span>
  8. </dd>
  9. </dl>
  10. <div class="bottom">
  11. <input type="submit" class="submit" value="{$Think.lang.ds_submit}" />
  12. </div>
  13. </form>
  14. </div>
  15. <script>
  16. $(document).ready(function(){
  17. $('#cash_form').validate({
  18. submitHandler:function(form){
  19. ds_ajaxpost('cash_form');
  20. }
  21. });
  22. });
  23. </script>