728x90 반응형 Developer/Javascript & jQuery104 [jquery] 금액박스 1234567891011121314151617181920212223242526272829303132333435363738jQuery UI 정가: $(function() { $('#price').spinner({ max : 10000, min : 1000, step : 10, culture : 'ko-KR', numberFormat : 'c1' }); }); $(function() { $('#price1').spinner({ max : 11100, min : 1000, step : 100 }); }); Colored by Color Scriptercs jQuery UI 정가: 2017. 1. 30. [jquery] button, input type 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748jQuery UI 버튼(Element) 앵커 체크 체크 1 체크 2 체크 3 라디오 1 라디오 2 라디오 3 $(function() { $('button').button(); $('a').button(); $('input[type="button"]').button(); $('input[type="submit"]').button(); $('input.one').button(); $('.set').buttonset(); }); Colored by Color Scriptercs jQuery UI 버튼(Element) 앵커 체크 체크 1 체크 2 체크 3 라.. 2017. 1. 30. [jquery] 파일첨부 후, 이미지 확인하기 HTML5 12345678910111213141516171819202122232425262728293031HTML5 파일: $(function() { $('#file').change(function(e) { if (window.File) { var input = $('#file').get(0).files[0]; var reader = new FileReader(); $(reader).on('load', function(e) { $('#result').attr('src', this.result); }); reader.readAsDataURL(input); } }); }); Colored by Color Scriptercs 파일: 2017. 1. 30. [Javascript] 계산기 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 function cal(num){document.myform.screen.value +=num;} function answer(){document.myform.screen.value=eval(document.myform.screen.value);} function clearcal(){document.myform.screen.value="";}//-->자바스크립트 계산기 Colored by Color Scriptercs 자바스크립트 계산기 2017. 1. 29. [Javascript] 마우스 물결표시 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105.sp{position:absolute;top:-50;} 2017. 1. 29. 이전 1 ··· 10 11 12 13 14 15 16 ··· 21 다음 728x90 반응형