在检查事件之前,我找不到确保功能完成的方法
<script type="text/javascript">
jQuery(document).ready( function() {
var cesc = new flickrshow('flickrbox', {
'autoplay':true,
'hide_buttons':false,
'interval':3500,
'page':1,
'per_page':10,
'user':'53335537@N04' });
jQuery('li').hover(function(){ console.log (jQuery(this)); });
});
</script>
此脚本在http://www.notrepanorama.com/
上运行创建框,然后填充图像,如果我将鼠标悬停在图像上,
任何解决方案?
答案 0 :(得分:0)
jQuery('li').bind('mouseover',function(){
// code for mouser over
}).bind('mouseout',function (){
// code for mouse out
});
whatever i understood from your question(which is unclear), this is my solution.