jQuery 의 Checkboxradio 입니다.
관련링크
본문
죄송스런 말씀이지만 자바를 잘몰라서요첨부된 그림과 같이 1번과 2번의 값을 바로 (3번제외하고) ]그림이나 테이블로 받고싶습니다.
1번) 3개값 2)5개값의 결과를 알고 싶어요 ^^이래 저래 해봐다 안되서요 감사합니다.

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>jQuery UI Checkboxradio - Product Selector</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script> <script> $( function() { function handleShape( e ) { $( ".shape" ) .removeClass( "circle pill square rectangle" ) .addClass( $( e.target ).val() ); }; function handleToggle( e ) { var target = $( e.target ); if ( target.is( ".brand-toggle" ) ) { var checked = target.is( ":checked" ), value = $( "[name='brand']" ) .filter( ":checked" )
답변을 작성하시기 전에 로그인 해주세요.
