其他分享
首页 > 其他分享> > jQuery取值

jQuery取值

作者:互联网

jQuery取值
可参考 https://www.w3school.com.cn/jquery/jquery_dom_get.asp
1: 根据class 、 id 取 input 标签的value 值 。

jQuery$(".className").val(); $("#idName").val();
javaScriptdocument.getElementById(“idName”).value;

2: 根据class 、id 获取标签之间的内容:如 span 、lable 、div。

jQuery$("#idName").html(); $(".className").html();
javaScriptdocument.getElementById(“idName”).innerHTML ;

3: 获取 select id=‘selectId’ option value=‘selectValue’ 选中值:

jQuery$("#selectId").val();
javaScriptdocument.getElementById(“selectId”).value;

4: 获取 img 的 src 内容 :

jQuery$("#imgId")[0].src;
javaScriptdocument.getElementById(“imgId”).src;

5:子界面获取父界面元素内容:
5.1 (标签间的内容 ,如 span 、lable 、div )

JQuery$(window.parent.document).find("#IdName").text();
JavaScriptwindow.parent.document.getElementById(“currentPage”).innerHTML ;

5.2 (取 input 标签的value 值)

JQuery$(window.parent.document).find("#IdName").val();
JavaScriptwindow.parent.document.getElementById(“currentPage”).value ;

标签:jQuery,val,idName,value,javaScriptdocument,getElementById,取值
来源: https://blog.csdn.net/me_Jackyoyo/article/details/114448760