爲什麼在block/none工作之間切換顯示,但jQuery顯示/隱藏不工作?jquery顯示和隱藏不工作,但本地更改爲style.display沒有工作
的Javascript:
<div style="width: 100px; height: 100px; background-color: red;"
onmouseover="document.getElementById('div1').style.display = 'block';"
onmouseout="document.getElementById('div1').style.display = 'none';">
<div id="div1" style="display: none;">Text</div>
</div>
的jQuery:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<div style="width: 100px; height: 100px; background-color: red;"
onmouseover="$('#div1').show();" onmouseout="$('#div1').hide();">
<div id="div1" style="display: none;">Text</div>
</div>
jQuery版本似乎在這裏工作:http://jsbin.com/aruvun/1/ – loganfsmyth
適合我。它必須是別的東西。什麼是整個頁面源代碼? – Popnoodles