jquery - 删除无法正常工作。 src 不适用于谷歌浏览器。我该怎么做才能取下牙套
<script type="text/javascript">
$(document).ready(function() {
// all jQuery code goes here
$("li").hover(function(){
$(this).prepend("<span>(</span>");
},function(){
$(this).append("<span>)</span>");
});
/*
function (){
$("li").remove();
}
*/
$("li.fade").hover(function(){
$(this).fadeOut(100);
$(this).fadeIn(300);
});
});
</script>
HTML
<div class="class1">
<ul id="1">
<li class="fade" ><a href="server43.hostpoint.ch/~raffael1/web2.roboearth/">What is RoboEarth?</a></li>
<li class="fade"><a href="server43.hostpoint.ch/~raffael1/web2.roboearth/motivation/…; <li class="fade"><a href="server43.hostpoint.ch/~raffael1/web2.roboearth/project-scope/… Scope</a></li>
</ul>
</div>
<script type="text/javascript">
$(document).ready(function() {
// all jQuery code goes here
$("li").hover(function(){
$(this).prepend("<span>(</span>");
},function(){
$(this).append("<span>)</span>");
});
/*
function (){
$("li").remove();
}
*/
$("li.fade").hover(function(){
$(this).fadeOut(100);
$(this).fadeIn(300);
});
});
</script>
HTML
<div class="class1">
<ul id="1">
<li class="fade" ><a href="server43.hostpoint.ch/~raffael1/web2.roboearth/">What is RoboEarth?</a></li>
<li class="fade"><a href="server43.hostpoint.ch/~raffael1/web2.roboearth/motivation/…; <li class="fade"><a href="server43.hostpoint.ch/~raffael1/web2.roboearth/project-scope/… Scope</a></li>
</ul>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你希望括号出现在鼠标悬停时,并在鼠标移出时删除。
jquery悬停第一个回调用于鼠标悬停状态,第二个回调用于鼠标移出状态,因此:
i'm guessing that you want the brackets appear on mouse over, and removed on mouse out.
jquery hover first callback is for the mouse over state, the second for mouse out, thus: