大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1、设置value为pxx的项选中
创新互联是一家专业提供江陵企业网站建设,专注与网站设计制作、网站制作、HTML5建站、小程序制作等业务。10年已为江陵众多企业、政府机构等服务。创新互联专业的建站公司优惠进行中。
$(".selector").val("pxx");
2、设置text为pxx的项选中
$(".selector").find("option[text='pxx']").attr("selected",true);
这里有一个中括号的用法,中括号里的等号的前面是属性名称,不用加引号。很多时候,中括号的运用可以使得逻辑变得很简单。
3、获取当前选中项的value
$(".selector").val();
4、获取当前选中项的text
使用JQuery给自定义属性赋值取值
jQuery 属性操作 - attr() 方法
定义和用法
attr() 方法设置或返回被选元素的属性值。
一、返回属性值
返回被选元素的属性值。
语法
$(selector).attr(attribute)
参数描述
attribute 规定要获取其值的属性。
$(selector).attr(attribute)
html
head
script type="text/javascript" src="/jquery/jquery.js"/script
script type="text/javascript"
$(document).ready(function(){
$("button").click(function(){
alert("Image width " + $("img").attr("width"));
});
});
/script
/head
body
img src="/i/eg_smile.gif" width="128" height="128" /
br /
button返回图像的宽度/button
/body
/html
二、设置属性/值
设置被选元素的属性和值。
语法
$(selector).attr(attribute,value)
参数描述
attribute 规定属性的名称。
value 规定属性的值。
$(selector).attr(attribute,value)
html
head
script type="text/javascript" src="/jquery/jquery.js"/script
script type="text/javascript"
$(document).ready(function(){
$("button").click(function(){
$("img").attr("width","180");
});
});
/script
/head
body
img src="/i/eg_smile.gif" /
br /
button设置图像的 width 属性/button
/body
/html
jquery设置下拉框的默认值可以直接使用val方法进行设置。
val方法可以设置表单元素的值,不管是输入框还是下拉菜单,都是用一样的设置方法。
复制代码 代码如下:
$(window.parent.document).find("#Frm_Main").attr("src",url);
使用jquery操作iframe
1 内容里有两个ifame
iframe id="leftiframe"...
iframe id="mainiframe..
leftiframe中jQuery改变mainiframe的src代码:
$("#mainframe",parent.document.body).attr("src"," ")
2 如果内容里面有一个ID为mainiframe的.ifame
ifame包含一个someID
you want to get this content
得到someID的内容
$("#mainiframe").contents().find("someID").html() html 或者 $("#mainiframe").contains().find("someID").text()值
2 如上面所示
leftiframe中的jQuery操作mainiframe的内容someID的内容
$("#mainframe",parent.document.body).contents().find("someID").html()或者 $("#mainframe",parent.document.body).contents().find("someID").val()