jQuery 설정 내용 과 속성 을 자세히 설명 합 니 다.

5257 단어 jQuery내용.속성
1.설정 내용 및 리 셋 함수
방법.
  • text()-선택 한 요소 의 텍스트 내용 을 설정 하거나 되 돌려 줍 니 다
  • html()-선택 한 요소 의 내용 을 설정 하거나 되 돌려 줍 니 다(HTML 태그 포함)
  • val()-폼 필드 의 값 을 설정 하거나 되 돌려 줍 니 다
  • 예시
    
    $("#btn1").click(function(){
     $("#test1").text("Hello world!");
    });//      
    $("#btn2").click(function(){
     $("#test2").html("<b>Hello world!</b>");
    });//      
    $("#btn3").click(function(){
     $("#test3").val("Dolly Duck");
    });//   
    
    
    $("#btn1").click(function(){
     $("#test1").text(function(i,origText){
      return "Old text: " + origText + " New text: Hello world!
      (index: " + i + ")";
     });
    });//      
    
    $("#btn2").click(function(){
     $("#test2").html(function(i,origText){
      return "Old html: " + origText + " New html: Hello <b>world!</b>
      (index: " + i + ")";
     });
    });//      
    
    TIPS
    리 셋 함 수 는 두 개의 인자 로 되 어 있 습 니 다.선 택 된 요소 목록 에 있 는 현재 요소 의 아래 표 시 된 값 과 원본(오래된)값 입 니 다.그리고 함수 새 값 으로 원 하 는 문자열 을 되 돌려 줍 니 다.
    2.설정 속성 및 리 셋 함수
    방법.
    attr()-속성 값 설정
    예시
    
    $("button").click(function(){
     $("#w3s").attr("href","http://www.w3school.com.cn/jquery");
    });//      
    
    $("button").click(function(){
     $("#w3s").attr({
      "href" : "http://www.w3school.com.cn/jquery",
      "title" : "W3School jQuery Tutorial"
     });
    });//      
    
    
    $("button").click(function(){
     $("#w3s").attr("href", function(i,origValue){
      return origValue + "/jquery";
     });
    });//    
    총 코드
    
    <!doctype html>
    	<head>
    	<title>jq       </title>
    	<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
    	<script type="text/javascript">
    		$(document).ready(function(){
    			$("#bt1").click(function(){
    				$("#p1").text("hello world1!");
    			});
    			$("#bt2").click(function(){
    				$("#p2").html("<h1>hello world2!</h1>");
    			});
    			$("#bt3").click(function(){
    				$("#t1").val("hello world3!");
    			});
    			$("#bt4").click(function(){
    				$("#p1").text(function(i,origText){
    					return "   :"+origText+"   :     (index:"+i+")"
    				});
    			});
    			$("#bt5").click(function(){
    				$("#p2").html(function(i,origText){
    					return " HTML:"+origText+" HTML:<b>   HTML</b>(index:"+i+")"
    				});
    			});
    			$("#bt6").click(function(){
    				$("#t1").val(function(i,origText){
    					return "  :"+origText+"  :    (index:"+i+")"
    				});
    			});
    			$("#bt7").click(function(){
    				$("a").attr("href","https://tieba.baidu.com");
    			});
    			$("#bt8").click(function(){
    				$("a").attr("href",function(i,origValue){return origValue + "/s?wd=1&rsv_spt=1&rsv_iqid=0xbc3b96600002e5f4&issp=1&f=8&rsv_bp=1&rsv_idx=2&ie=utf-8&tn=baiduhome_pg&rsv_enter=1&rsv_sug3=2&rsv_sug1=1&rsv_sug7=100&rsv_sug2=0&inputT=163&rsv_sug4=1686"});
    			});
    		});
    	</script>
    	</head>
    
    	<body>
    		<input type="button" id="bt1" value="    " "">
    		<input type="button" id="bt2" value="  HTML" "">
    		<input type="button" id="bt3" value="   " "">
    		<p id="p1">    </p>
    		<p id="p2">  HTML</p>
    		<p>  :<input type="text" value=" " id="t1" style ="width:500px"></p>
    		<input type="button" id="bt4" value="   /   " "">
    		<input type="button" id="bt5" value="   / HTML" "">
    		<input type="button" id="bt6" value="   /  " "">
    		<hr><!--       ,       -->
    		<input type="button" id="bt7" value="  href    " "">
    		<p><a id="baidu" href="https://www.baidu.com" rel="external nofollow" target="_blank">  </a></p>
    		<input type="button" id="bt8" value="  href    1(    )" "">
    	</body>
    </html>
    
    위 에서 말 한 것 은 편집장 님 께 서 소개 해 주신 jQuery 설정 내용 과 속성 을 상세 하 게 통합 하여 여러분 께 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 님 께 서 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

    좋은 웹페이지 즐겨찾기