我是這個網站的新手,我希望你很快就能回答。mysql_fetch_array的div onmouseover只適用於第一個結果
我想要刪除圖標顯示,當用戶將鼠標懸停在他們選定的朋友,但它只出現在mysql_fetch_array的第一個結果。不適用於其他人。你能幫我嗎?我聽說這是用foreach函數完成的,但不知道如何使用它,因爲我是php的新手。
這裏是代碼。
PHP:
$q = mysql_query("SELECT * FROM `users`");
while ($row = mysql_fetch_array($q)) {
echo '<div id="friends" onmouseover="showRemove();" onmouseout="hideRemove();">';
echo '<div id="fillexit"></div>';
echo '<div id="showexit"></div>';
echo '</div>';
}
的Javascript:
function showRemove() {
var l=document.getElementById("showexit");
var s=document.getElementById("fillexit");
l.style.display = 'block';
s.style.display = 'none';
}
function hideRemove() {
var p=document.getElementById("showexit");
var o=document.getElementById("fillexit");
p.style.display = 'none';
o.style.display = 'block';
}
CSS:
#fillexit {
width:12px;
height:12px;
float:right;
}
#showexit {
width:12px;
height:12px;
background-color:#000000;
float:right;
text-align:center;
display:none;
}
我真的並欣賞你的幫助。
我會在laaaaaaast檢查出來 – 2012-03-10 20:39:22
。現在它的作品非常感謝你。我會接受你的回答! – 2012-03-10 20:57:42