hdCustomerCode" type ="hidden" value='<%#Eval("CustomerCode") %> />
코드는 다음과 같습니다. function SelectReceipt()
{
var checknum = 0; var customerCode = ""; var type = ""; var url = ""; ).length; if ( checknum > 1) { alert("결제에는 하나의 레코드만 선택할 수 있습니다!") return false; { alert( checknum); if (checknum == 1) { customerCode = $("input:checked").next().attr("value") ; //next() 메서드를 통해 가져옵니다. 다음 hdCustomerName 값을 가져오려면 .next().next()를 사용할 수 있습니다. //customerName = $("input:checked~#hdCustomerName").val();//IE는 ID를 사용할 때 오류를 보고하지만 Firefox는 type = $("input:checked~ .hdStatus") .attr("value");//또는 클래스를 사용하여 가져옵니다. url = 'PreReceiptDeposit.aspx?customerCode=' customerCode '&departmentType=' type; } else { url = 'PreReceiptDeposit.aspx?customerCode='''&departmentType=' type; } alert(url) UniversalOpenWindowAndBreak(640, 600, url, 1); true 반환 } }
jQuery--체크박스 모두 선택/선택 취소
코드 복사
코드는 다음과 같습니다.
1
2 3
4
모두 선택/모두 선택 취소
>
jQuery.attr은 다음과 같이 객체의 속성 값을 가져오거나 설정합니다. $("input[name='chk_list']").attr("checked") //읽기 이름이 'chk_list'인 모든 이름 '객체의 상태(선택 여부) $("input[name='chk_list']").attr("checked",true) //Set selected 'chk_list'라는 이름의 모든 객체에 대해 true로 설정 또 다른 예: $("#img_1").attr("src","test.jpg") //src 값 설정 img_1의 ID를 'test.jpg'로 $("#img_1").attr("src") //ID가 img_1인 src 값을 읽습니다. 다음 코드는 위 예시에서 선택한 체크박스의 값: