parseInt($("#making").val(), 10); //10진수 숫자로 변환
$(':radio[name="butterfly"]:checked').val(); //라디오버튼 체크된 값
$("select[name='viewSuboption[]']").each(function(){}); //해당셀렉터인풋배열 반복
$(this).find("option").each(function(){}); //해당셀렉터 옵션들 반복
Math.round((optWidth + 40) /130) + 1; // 반올림
Math.ceil((optWidth *2) /150) ; //올림
Math.floor((optWidth *2) /150) ; //내림
$("selector").each(function(){}); // 셀렉터만큼 반복
var val = 010-1234-5678; //해당 값
val = val.split("-"); //해당값 '-' 로 자르기
val[0] = 010;
val[1] = 1234;
val[2] = 5678;
var temp = "23cm";
temp.replace("cm", ""); // cm를 여백으로 대체
console.log("aaa"); //콘솔에 찍어보기
$(this).attr('속성(id,name)'); //해당셀렉터 속성값 가져오기
$(this).removeAttr("selected"); //해당 속성 지우기
$(this).trigger("click"); //해당셀렉터 클릭
var data = "0-9cm 봉 레일 설치";
var reg = /[0-9cm\~]+/;
var temp = reg.exec(data); //reg값 data에서 찾기