我在这里错过了什么:
$(document).ready(function(){
$('cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
Run Code Online (Sandbox Code Playgroud)
显然是因为它不起作用..看起来如此简单却如此错误..
这是.你的选择器中的一个:
$(document).ready(function(){
$('.cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
33 次 |
| 最近记录: |