jquery設置背景色
① jquery滑鼠點擊事件,改變背景色
你的意思是不是:滑鼠移動高亮顯示div,點擊div就選中當前div(單選),
完整代碼如下:
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>jquery滑鼠點擊事件,改變背景色</title>
<scriptsrc="jquery-1.7.1.min.js"></script>
<scripttype="text/javascript">
$(function(){
//初始化div,並注冊事件
varinitDiv=function(){
$(".managementPaneldiv").css("background","");
$(".managementPaneldiv").mouseover(function(){
$(this).css("background","#588600");
})
.mouseout(function(){
$(this).css("background","");
})
};
initDiv();
$(".managementPaneldiv")
.click(function(){
initDiv();
//當前被點擊的div改變背景色
$(this).css("background","#588600");
//取消當前div的mouseout和mouseover事件
$(this).unbind("mouseout");
$(this).unbind("mouseover");
});
})
</script>
</head>
<body>
<divclass="managementPanel">
<div>div1</div>
<div>div2</div>
<div>div3</div>
<div>div4</div>
<div>div5</div>
</div>
</body>
</html>
效果圖:
② jquery如何改變css背景圖
jquery改變CSS背景圖修改方法
如果需要使用Jquery修改CSS網頁背景樣式。用戶可以這樣寫$(『p』專).css({"background-image":"url(../images/msg_btn.gif"});
③ jquery改變tr背景色的代碼
本篇文章主要是對jquery改變tr背景色的示例代碼進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助
id為tr的ID
設置當前選擇行背景色,同時置其他行背景為另一種顏色
代碼如下:
$('#id').css("background-color",
"#e5e5e5").siblings().css("background-color",
"#FFFFFF");
④ 利用jquery數組,如何為對應li設置背景色
<ulclass="explain">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<script>
$(function(){
varcolor=newArray("#fff","#000","#ff0000","#ff7f00");
$("ul.explainli").each(function(i,e){
$(e).css("background-color",color[i]);
});
})
</script>
⑤ jquery實現點擊a標簽後添加背景顏色
1、新建一個html文件,命名為test.html。
⑥ jquery 動態更改 div 背景色
用jquery如何實現點擊一欄目實現欄目變色,再點擊另一欄目也變色,但原來的變回原色,有個數組a(1,2,3)循環遍歷輸出a的值。jquery 動態更改 div 背景色代碼如下:
<head>
<script type="text/javascript" src="/js/jQuery.js"></script>
<script type="text/javascript">
$(".test").onclick = function(){
$(this).css({"background": "red"});
};
</script>
</head>
<body>
<div class="test"
style="background-color: gray; width: 300px; height: 200px;"></div>
</body>
</html>$(".test").onclick = function(){
$(this).css({"background": "red"});
};
改為:
$(".test").click = function(){
$(this).css({"background-color": "red"});
};
(6)jquery設置背景色擴展閱讀:
jQuery是一個快速、簡潔的JavaScript框架,是繼Prototype之後又一個優秀的JavaScript代碼庫(或JavaScript框架)。jQuery設計的宗旨是「write Less,Do More」,即倡導寫更少的代碼,做更多的事情。它封裝JavaScript常用的功能代碼,提供一種簡便的JavaScript設計模式,優化HTML文檔操作、事件處理、動畫設計和Ajax交互。
2. jQuery的核心特性可以總結為:具有獨特的鏈式語法和短小清晰的多功能介面;具有高效靈活的css選擇器,並且可對CSS選擇器進行擴展;擁有便捷的插件擴展機制和豐富的插件。jQuery兼容各種主流瀏覽器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。
3.jquery所有的事件綁定都沒有on這個關鍵字。另外,jquery的事件綁定需要放到readyfunction中去。具體來說:
<head>
<script type="text/javascript" src="/js/jQuery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".test").click(function() {
$(this).css({"background-color": "red"});
});
});
</script>
</head>
<body>
<div class="test"
style="background-color: gray; width: 300px; height: 200px;"></div>
</body>
</html>
⑦ jquery easyui怎麼改變背景顏色
當
listprice
值大於
50
時,將為該行設置不同的顏色。
數據網格(datagrid)的
rowStyler
函數的設計目的是允許您自定義行樣式。以下代碼展示如何改變行樣式:
<table
id="tt"
title="DataGrid"
style="width:600px;height:250px"
url="data/datagrid_data.json"
singleSelect="true"
fitColumns="true">
<thead>
<tr>
<th
field="itemid"
width="80">Item
ID</th>
<th
field="proctid"
width="80">Proct
ID</th>
<th
field="listprice"
width="80"
align="right">List
Price</th>
<th
field="unitcost"
width="80"
align="right">Unit
Cost</th>
<th
field="attr1"
width="150">Attribute</th>
<th
field="status"
width="60"
align="center">Stauts</th>
</tr>
</thead>
</table>
$('#tt').datagrid({
rowStyler:function(index,row){
if
(row.listprice>50){
return
'background-color:pink;color:blue;font-weight:bold;';
}
}
});
正如所看到的,根據一些條件設置
background-color(背景色)為
pink(粉紅色),設置文本顏色為
blue(藍色)。
⑧ jquery如何設置按鈕顏色
jquery設置按鈕顏色可以通過動態操作css來實現。
1、指定html中的button元素
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="jquery.js"></script>
</head>
<body>
<input type="button" value="按鈕變化顏色" id="btn"/>
</body>
</html>
2、設置顏色的jquery腳本:
$("#btn").click(function(){
//each()分流出每個事件
$("#btn").each(function(index,elem){
//在給附上css值
$(elem).css("background",$(elem).data("color"));
})
})
// document.getElementById("a").style.background="red";
</script>
⑨ jQuery改變div背景顏色
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://libs..com/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").css("background-color","red");
});
</script>
<title>練習測試</title>
</head>
<body>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
<div>風信息和台風路徑,可及時准確地提供台風的實時信息、預報信...</div>
</body>
</html>