style也可以看做普通的HTML节点,因此其创建方法与jQuery创建普通元素的方法相同,关键代码:
$("<style></style>").text("div#test{color:red}").appendTo($("head"))下面实例演示——点击按钮创建新的style样式:
1、HTML结构
<div id="test">这是示例的DIV</div><input type="button" value="创建新的<style>">
2、jQuery代码
$(function(){$("input[type='button']").click(function() {
$("<style id='test_style'></style>").text("div#test{color:red}").appendTo($("head"))
$("div#test").html($("div#test").text() + "<br>" + $("#test_style").text())
})
})
3、效果演示
1、首先来看下测试代码,html里,主要部分有二个input输入框,和一个按钮。
2、在js代码里,借助Jquery插件库来 *** 作,以减少代码,所以先引入对应的脚本库文件。
3、js代码里,为按钮添加点击事件,点击后,就用jquery设置姓名输入框的disabled属性,设置为false,这样输入框就不能输入了,为禁止状态了。只要调用jquery的 attr方法,然后输入属性的名称和值就行了:$("#name").attr('disabled', true)。
4、运行页面,可以看到现在的输入框是可以输入的,是正常状态的,点击一下“修改”按钮。
5、点击后,输入框就变成了禁止状态了,成功设置了输入框的属性。
1、jQuery设置css样式
<div style="background-color:#ffffffpadding-left:10px">测试jQuery动态获取padding-left</div>
2、用css()方法返回元素的样式属性
$("div").css("padding-left"))
3、用css()设置样式
$("div").css("color","yellow")
4、设置多个样式
$("div").css({"background-color":"yellow","font-size":"200%"})
var css = {
background-color: '#EEE',
height: '500px',
margin: '10px',
padding: '2px 5px' }
$("div").css(css)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)