JQuery는 형제 값을 얻는 방법입니다(예: GridView에 있는 경우)_jquery

WBOY
풀어 주다: 2016-05-16 17:55:18
원래의
961명이 탐색했습니다.
코드 복사 코드는 다음과 같습니다.




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 값을 읽습니다.
다음 코드는 위 예시에서 선택한 체크박스의 값:



코드 복사


코드는 다음과 같습니다.



다음은 $.each()를 사용하여 탐색한 코드입니다.




코드 복사


코드는 다음과 같습니다.


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿