mouse
English [ma?s] American [ma?s]
n. ?; ???? ?? [informal] ?? ?? ??
vi ?? ?? ???
enter
英[?ent?(r)] 美[??nt?]
vt.& vi. ?? ??;
jquery mouseenter() ?? ???
??: ??? ???? ??? ???? mouseenter ???? ?????. ? ???? mouseleave ???? ?? ?? ?? ?????. mouseenter() ???? mouseenter ???? ?????? mouseenter ???? ??? ? ??? ??? ?????. mouseover ???? ?? mouseenter ???? ??? ???? ??? ??? ??? ?? ??????. ??? ???? ?? ??? ???? mouseover ???? ??????. ??? ??? ?? ?? ?????.
mouseenter ??? ??: $(selector).mouseenter()
??? mouseenter ??? ??? ???: $(selector).mouseenter(function
????:
Parameter | Description |
function | ?? ?????. mouseenter ???? ??? ? ??? ??? ?????. jquery mouseenter() ?? ?<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").mouseenter(function(){ $("p").css("background-color","yellow"); }); $("p").mouseleave(function(){ $("p").css("background-color","#E9E9E4"); }); }); </script> </head> <body> <p style="background-color:#E9E9E4">請把鼠標指針移動到這個段落上。</p> </body> </html> ??? ????? ??? "???? ??" ??? ????? |