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、效果演示
给所有的<li>元素加一个class,比如class="myButton"。然后在合适的地方加入以下jQuery代码:
$(".myButtton").mouseenter(function(){
// 鼠标移到按钮上时执行的代码
})
$(".myButtton").mouseleave(function(){
// 鼠标移出按钮范围时执行的代码
})
$(".myButtton").click(function(){
// 鼠标点击按钮时执行的代码
})
至于具体执行什么代码,按照你的要求应该改改css就行了,比如想让鼠标移到按钮上时变成红色,就写:
$(".myButtton").mouseenter(function(){
$(this).css("background-color", "red")
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)