Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

currency-form.js 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. $(document).ready(function() {
  2. /***************************************/
  3. /* Initiallizing for the plugin */
  4. /***************************************/
  5. $('.currency').autoNumeric('init');
  6. /***************************************/
  7. /* end Initiallizing for the plugin */
  8. /***************************************/
  9. /***************************************/
  10. /* Select currency section */
  11. /***************************************/
  12. $('#input-select-currency').autoNumeric('init');
  13. $('#radio-select-currency').change(function() {
  14. var value = $('#radio-select-currency input:checked').val();
  15. if (value == 'dollar') {
  16. $('#input-select-currency').autoNumeric('update', { aSign: '$ ' });
  17. }
  18. if (value == 'euro') {
  19. $('#input-select-currency').autoNumeric('update', { aSign: '€ ' });
  20. }
  21. if (value == 'pound') {
  22. $('#input-select-currency').autoNumeric('update', { aSign: '£ ' });
  23. }
  24. if (value == 'yen') {
  25. $('#input-select-currency').autoNumeric('update', { aSign: '¥ ' });
  26. }
  27. }).change();
  28. /***************************************/
  29. /* end Select currency section */
  30. /***************************************/
  31. });
  32. $(function() {
  33. // Default
  34. $("#stepper1").stepper({});
  35. // Disable mouse wheel
  36. $("#stepper2").stepper({
  37. allowWheel: false,
  38. UI: false,
  39. arrowStep: 0.1
  40. });
  41. // Value range (min: -10; max: 10)
  42. $("#stepper3").stepper({
  43. limit: [-10, 10],
  44. wheelStep: 0.2,
  45. });
  46. // Limit (min: 5)
  47. $("#stepper4").stepper({
  48. limit: [5, ]
  49. });
  50. });