请教一个关于jquery的简单问题

<html><head><title>第一个jQuery</title><scripttype="text/javascript"src="jquery-latest.j... <html>

<head>

<title>第一个jQuery</title>
<script type="text/javascript" src="jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a.mya").mouseover(function (){
window.status=this.title;
//alert(this.title);
return true;
}).mouseout(function (){
window.status='Done';
})
})
</script>
</head>
<body>
<a class="mya" href="www.baidu.com" title="这是一个超链接!">超链接的测试!</a>
</body>
</html>
为什么这样写运行的时候IE的状态栏不显示title的内容,但是把注释的了那句加上去就可以呢??
展开
 我来答
泉夜伊M
2011-02-25 · TA获得超过103个赞
知道小有建树答主
回答量:308
采纳率:0%
帮助的人:172万
展开全部
我是这样写的,可以
<script language="javascript" type="text/javascript" src="jquery.1.4.js"></script>
<script type="text/javascript">
$(function(){
$("a.mya").mouseover(
function(){
window.status=$(this).attr("title");
return true;
}
).mouseout(
function(){
window.status="none";
}
);
});
</script>
追问
冒昧的问一下你的浏览器是什么?
追答
IE8啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
卡车土匪
2011-02-25 · TA获得超过292个赞
知道小有建树答主
回答量:266
采纳率:0%
帮助的人:0
展开全部
$("a.mya").hover(function(){
window.status=$(this).attr("title");
},function (){
window.status='Done';
})
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式