jQuery csscsscsscsscsscsscsscsscsscssHTMLjavajavacSSHtmlcsscsscsscsshtmljavajavacsshtmlcsscsscsscsshtmljavajavahtmlcsshtmlhtmljavajavahtmlhtmljavajavahtmlcsscss 操纵
jQuery 拥有三种供 操纵的重要函数:
[li]$(selector).(name,value)
[li]$(selector).({properties})
[li]$(selector).(name) [/li]
操纵实例
函数 (name,value) 为所有匹配元素的给定 属性设置值:
实例
[pre]$(selector).(name,value)
$("p").("background-color","yellow");
[/pre]
TIY
<>
<head>
<script type="text/script" src="/jquery/jquery.js"></script>
<script type="text/script">
$(document).ready(function(){
$("button").click(function(){
$("p").("background-color","yellow");
});
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">Click me</button>
</body>
</>
函数 ({properties}) 同时为所有匹配元素的一系列 属性设置值:
实例
[pre]$(selector).({properties})
$("p").({"background-color":"yellow","font-size":"200%"});
[/pre]
TIY
<>
<head>
<script type="text/script" src="/jquery/jquery.js"></script>
<script type="text/script">
$(document).ready(function(){
$("button").click(function(){
$("p").({"background-color":"yellow","font-size":"200%"});
});
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">Click me</button>
</body>
</>
函数 (name) 返回指定的 属性的值:
实例
[pre]$(selector).(name)
$(this).("background-color");
[/pre]
TIY
<>
<head>
<script type="text/script" src="/jquery/jquery.js"></script>
<script type="text/script">
$(document).ready(function(){
$("div").click(function(){
$("#result").($(this).("background-color"));
});
});
</script>
</head>
<body>
<div style="width:100px;height:100px;
background:#ff0000"></div>
<p id="result">Click in the box</p>
</body>
</>
jQuery Size 操纵
jQuery 拥有两种供尺寸操纵的重要函数:
[li]$(selector).height(value)
[li]$(selector).width(value) [/li]
Size 操纵实例
函数 height(value) 设置所有匹配元素的高度:
实例
[pre]$(selector).height(value)
$("#id100").height("200px");
[/pre]
TIY
<>
<head>
<script type="text/script" src="/jquery/jquery.js"></script>
<script type="text/script">
$(document).ready(function(){
$("button").click(function(){
$("#id100").height("200px");
});
});
</script>
</head>
<body>
<div id="id100" style="background:yellow;height:100px;width:100px">
HELLO</div>
<div id="id200" style="background:yellow;height:100px;width:100px">
gjrencai.com</div>
<button type="button">Click me</button>
</body>
</>
函数 width(value) 设置所有匹配元素的宽度:
实例
[pre]$(selector).width(value)
$("#id200").width("300px");
[/pre]
TIY
<>
<head>
<script type="text/script" src="/jquery/jquery.js"></script>
<script type="text/script">
$(document).ready(function(){
$("button").click(function(){
$("#id200").width("300px");
});
});
</script>
</head>
<body>
<div id="id100" style="background:yellow;height:100px;width:100px">HELLO</div>
<div id="id200" style="background:yellow;height:100px;width:100px">gjrencai.com</div>
<button type="button">Click me</button>
</body>
</>
jQuery 函数 - 来自本页
css 属性 | 描述 | $(selector).css(name,value) | 为匹配元素设置样式属性的值 | $(selector).css({properties}) | 为匹配元素设置多个样式属性 | $(selector).css(name) | 获得第一个匹配元素的样式属性值 | $(selector).height(value) | 设置匹配元素的高度 | $(selector).width(value) | 设置匹配元素的宽度 |
(selector) jQuery 元素选择器语法
如需完整的参考手册,请访问我们的 jQuery 函数参考手册。 |