以下のHTML:
<div id="catestory">
<div class="content">
<h2>some title here</h2>
<p>some content here</p>
</div>
<div class="content">
<h2>some title here</h2>
<p>some content here</p>
</div>
<div class="content">
<h2>some title here</h2>
<p>some content here</p>
</div>
</div>
Divのコンテンツにマウスオーバーすると、backgroundColorとh2(このdiv内)のbackgroundColorが変化します(CSS:hoverのように)
CSS(:hover)を使用して最新のブラウザーでこれを実行できることはわかっていますが、IE6は動作しません。
JavaScript(jQueryや他のJSフレームワークではない)を使用してこれを行う方法は?
編集:h2 backgroundColorも変更する方法
var div = document.getElementById( 'div_id' );
div.onmouseover = function() {
this.style.backgroundColor = 'green';
var h2s = this.getElementsByTagName( 'h2' );
h2s[0].style.backgroundColor = 'blue';
};
div.onmouseout = function() {
this.style.backgroundColor = 'transparent';
var h2s = this.getElementsByTagName( 'h2' );
h2s[0].style.backgroundColor = 'transparent';
};
コード内の要素のスタイルを追加/変更することは悪い習慣です。今日は背景を変更したいcolorと明日は背景を変更したいimageそして明日はborder。
設計要件が変更されるため、コードを毎回編集するのは苦痛です。また、プロジェクトが成長する場合、jsファイルの変更はさらに苦痛になります。より多くのコード、より多くの痛み。
ハードコーディングされたスタイルを使用しないようにしてください。これにより時間を節約できます。適切に行うと、「色の変更」タスクを他の人に依頼することができます。
したがって、スタイルの直接プロパティを変更する代わりに、ノードでCSSクラスを追加/削除できます。特定のケースでは、親ノード(「div」)に対してのみこれを行う必要があります。次に、CSSを介してサブノードをスタイルします。したがって、特定のスタイルプロパティをDIVおよびH2に適用する必要はありません。
もう1つの推奨事項。ハードコードされたノードを接続しないでくださいが、それを行うには何らかのセマンティクスを使用してください。例:「クラス 'content'を持つすべてのノードにイベントを追加するには。
結論として、このようなタスクに使用するコードは次のとおりです。
//for adding a css class
function onOver(node){
node.className = node.className + ' Hover';
}
//for removing a css class
function onOut(node){
node.className = node.className.replace('Hover','');
}
function connect(node,event,fnc){
if(node.addEventListener){
node.addEventListener(event.substring(2,event.length),function(){
fnc(node);
},false);
}else if(node.attachEvent){
node.attachEvent(event,function(){
fnc(node);
});
}
}
// run this one when window is loaded
var divs = document.getElementsByTagName("div");
for(var i=0,div;div =divs[i];i++){
if(div.className.match('content')){
connect(div,'onmouseover',onOver);
connect(div,'onmouseout',onOut);
}
}
そして、あなたはこのようなCSSになります:
.content {
background-color: blue;
}
.content.Hover{
background-color: red;
}
.content.Hover h2{
background-color : yellow;
}
たとえば、イベントハンドラーでdocument.getElementById()
またはthis
を使用して、変更する要素にアクセスし、その要素のスタイルを変更します。
document.getElementById("MyHeader").style.backgroundColor='red';
[〜#〜] edit [〜#〜]
getElementsByTagName も使用できます(未テスト)。例:
function colorElementAndH2(elem, colorElem, colorH2) {
// change element background color
elem.style.backgroundColor = colorElem;
// color first contained h2
var h2s = elem.getElementsByTagName("h2");
if (h2s.length > 0)
{
hs2[0].style.backgroundColor = colorH2;
}
}
// add event handlers when complete document has been loaded
window.onload = function() {
// add to _all_ divs (not sure if this is what you want though)
var elems = document.getElementsByTagName("div");
for(i = 0; i < elems.length; ++i)
{
elems[i].onmouseover = function() { colorElementAndH2(this, 'red', 'blue'); }
elems[i].onmouseout = function() { colorElementAndH2(this, 'transparent', 'transparent'); }
}
}
<script type="text/javascript">
function enter(elem){
elem.style.backgroundColor = '#FF0000';
}
function leave(elem){
elem.style.backgroundColor = '#FFFFFF';
}
</script>
<div onmouseover="enter(this)" onmouseout="leave(this)">
Some Text
</div>
私は本当に真面目なプログラマーではなく、ペニシリンが発明された方法をプログラミングすることで何かを発見しているので、これは少し奇妙かもしれません-全くの事故。では、マウスオーバーで要素を変更する方法は?使用 :hover
属性は、a
要素と同様です。
例:
div.classname:hover
{
background-color: black;
}
これにより、div
がクラスclassname
に変更され、マウスオーバーの背景が黒になります。基本的に任意の属性を変更できます。 IE and Firefox
幸せなプログラミング!
JavaScriptの関数を使用してonclickを呼び出すだけで、非常に簡単です。
<script type="text/javascript">
function change()
{
document.getElementById("catestory").style.backgroundColor="#666666";
}
</script>
<a href="#" onclick="change()">Change Bacckground Color</a>
JQueryまたは他のライブラリなしでこれを行うには、onMouseOverおよびonMouseOutイベントを各divにアタッチし、イベントハンドラーでスタイルを変更する必要があります。
例えば:
var category = document.getElementById("catestory");
for (var child = category.firstChild; child != null; child = child.nextSibling) {
if (child.nodeType == 1 && child.className == "content") {
child.onmouseover = function() {
this.style.backgroundColor = "#FF0000";
}
child.onmouseout = function() {
// Set to transparent to let the original background show through.
this.style.backgroundColor = "transparent";
}
}
}
H2が独自の背景を設定していない場合、div背景は透けて見え、色付けされます。
このスクリプトを試すことができます。 :)
<html>
<head>
<title>Div BG color</title>
<script type="text/javascript">
function Off(idecko)
{
document.getElementById(idecko).style.background="rgba(0,0,0,0)"; <!--- Default --->
}
function cOn(idecko)
{
document.getElementById(idecko).style.background="rgb(0,60,255)"; <!--- New content color --->
}
function hOn(idecko)
{
document.getElementById(idecko).style.background="rgb(60,255,0)"; <!--- New h2 color --->
}
</script>
</head>
<body>
<div id="catestory">
<div class="content" id="myid1" onmouseover="cOn('myid1'); hOn('h21')" onmouseout="Off('myid1'); Off('h21')">
<h2 id="h21">some title here</h2>
<p>some content here</p>
</div>
<div class="content" id="myid2" onmouseover="cOn('myid2'); hOn('h22')" onmouseout="Off('myid2'); Off('h22')">
<h2 id="h22">some title here</h2>
<p>some content here</p>
</div>
<div class="content" id="myid3" onmouseover="cOn('myid3'); hOn('h23')" onmouseout="Off('myid3'); Off('h23')">
<h2 id="h23">some title here</h2>
<p>some content here</p>
</div>
</div>
</body>
<html>
非セマンティックノードをドキュメントに挿入する場合は、divを偽のAタグでラップすることにより、CSSのみのIE互換の方法でこれを実行できます。
<style type="text/css">
.content {
background: #ccc;
}
.fakeLink { /* This is to make the link not look like one */
cursor: default;
text-decoration: none;
color: #000;
}
a.fakeLink:hover .content {
background: #000;
color: #fff;
}
</style>
<div id="catestory">
<a href="#" onclick="return false();" class="fakeLink">
<div class="content">
<h2>some title here</h2>
<p>some content here</p>
</div>
</a>
<a href="#" onclick="return false();" class="fakeLink">
<div class="content">
<h2>some title here</h2>
<p>some content here</p>
</div>
</a>
<a href="#" onclick="return false();" class="fakeLink">
<div class="content">
<h2>some title here</h2>
<p>some content here</p>
</div>
</a>
</div>