«attr» 태그된 질문

18
.prop () 대 .attr ()
따라서 jQuery 1.6 에는 새로운 기능이 prop()있습니다. $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) 아니면이 경우에도 같은 일을합니까? 그리고 나는 경우 않는 사용하여 스위치에있는 prop()모든 기존 attr()i가 1.6로 전환 할 경우 중단됩니다 전화를? 최신 정보 selector = '#id' $(selector).click(function() { //instead of: var getAtt = this.getAttribute('style'); …
2297 javascript  jquery  dom  attr  prop 

5
값없이 속성 설정
jQuery에 값을 추가하지 않고 데이터 속성을 어떻게 설정합니까? 나는 이것을 원한다 : <body data-body> 나는 시도했다 : $('body').attr('data-body'); // this is a getter, not working $('body').attr('data-body', null); // not adding anything 다른 모든 것은 두 번째 인수를 문자열로 추가하는 것 같습니다. 값없이 속성을 설정할 수 있습니까?

6
jQuery를 사용하여 입력 비활성화 속성 전환
내 코드는 다음과 같습니다. $("#product1 :checkbox").click(function(){ $(this) .closest('tr') // Find the parent row. .find(":input[type='text']") // Find text elements in that row. .attr('disabled',false).toggleClass('disabled') // Enable them. .end() // Go back to the row. .siblings() // Get its siblings .find(":input[type='text']") // Find text elements in those rows. .attr('disabled',true).removeClass('disabled'); // Disable them. }); …
191 jquery  toggle  attr 


15
Error : (9, 5) error : resource android : attr / dialogCornerRadius not found
그래서 나는 android studio 3.0.1을 설치했고 그것이 gradle을 열 자마자 다음과 같은 오류를 보여주었습니다. 디자인 및 지원과 같은 종속성을 추가하려고 시도했지만 헛된 것입니다. 누군가 나를 도울 수 있습니까? 미리 감사드립니다. dialogCornerRadius 및 fontVariation Settings와 같은 일부 속성을 찾을 수 없음을 보여줍니다.
118 android  attr 

5
코드에서 attrs.xml에 생성 된 enum을 얻는 방법
enum 유형의 선언 스타일 속성을 사용 하여 사용자 정의보기 ( 여기에서 찾기 )를 만들었습니다 . xml에서 이제 사용자 지정 속성에 대한 열거 형 항목 중 하나를 선택할 수 있습니다. 이제이 값을 프로그래밍 방식으로 설정하는 메서드를 만들고 싶지만 열거 형에 액세스 할 수 없습니다. attr.xml <declare-styleable name="IconView"> <attr name="icon" format="enum"> <enum …

4
jQuery 속성 대 소품?
또 다른되지 이제 이것은 어떤 차이 질문이다하는 것은 , 내가 한 몇 가지 테스트를 수행 (http://jsfiddle.net/ZC3Lf/) 개질 prop과 attr의 <form action="/test/"></form>​ 출력이 되 고 : 1) 소품 수정 테스트 소품 : http://fiddle.jshell.net/test/1 속성 :http://fiddle.jshell.net/test/1 2) 속성 수정 테스트 Prop : http://fiddle.jshell.net/test/1 Attr :/test/1 3) Attr의 다음 소유 수정 테스트 소유 …
102 javascript  jquery  attr  prop 

5
'value = x'로 요소를 찾는 방법은 무엇입니까?
있는 요소를 제거해야합니다 value="123". 다른 값을 가진 모든 요소가에 위치한다는 것을 알고 #attached_docs있지만을 사용하여 요소를 선택하는 방법을 모르겠습니다 value="123". $('#attached_docs').find ... .remove(); 도와주세요?
102 jquery  find  attr 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.