js與jQuery在頁面取值的方法


1: 根據class 、 id  取 input 標簽的value 值 。
                  jQuery     : $(".className").val();  $("#idName").val();
                  javaScript : document.getElementById("idName").value;
       
           2:  根據class 、id 獲取標簽之間的內容:如 <span> 、<lable> 、<div> 。
                 jQuery     : $("#idName").html(); $(".className").html();
                 javaScript : document.getElementById("idName").innerHTML ;
       
          3: 獲取<select id='selectId'> <option value='selectValue'>  選中值:
                 jQuery     : $("#selectId").val();
                 javaScript : document.getElementById("selectId").value;
       
          4: 獲取<img > 的 src 內容 :
                jQuery     : $("#imgId")[0].src;
               javaScript : document.getElementById("imgId").src;
       
          5:子界面獲取父界面元素內容:
                 5.1 (標簽間的內容 ,如 <span> 、<lable> 、<div> )
                       JavaScript : window.parent.document.getElementById("currentPage").innerHTML ;
                       JQuery     : $(window.parent.document).find("#IdName").text();
                 5.2 (取 input 標簽的value 值)
                       JavaScript : window.parent.document.getElementById("currentPage").value ;
                       JQuery     : $(window.parent.document).find("#IdName").val();

 

         6:子界面控制父頁面跳轉:

                      window.parent.location.href = “*” ;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM