如何用jquery 删除兄弟节点内指定的元素,内容不可移除

<tr><td><fontcolor='red'>内容不可移出</font></td></tr><tr><td><fontcolor='red'>内容不可移出</font... <tr><td><font color='red'>内容不可移出</font></td></tr>
<tr><td><font color='red'>内容不可移出</font></td></tr>
<tr><td><font color='red'>内容不可移出</font></td></tr>
当鼠标移动到某一tr时,兄弟节点的font元素被移除,内容不可移除。
展开
 我来答
shenchaoliang
推荐于2016-05-15 · TA获得超过1163个赞
知道大有可为答主
回答量:810
采纳率:0%
帮助的人:1518万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
<script language="javascript" src="/js/jquery-1.4.4.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$("#t tr").click(function(){
$("#t tr td").each(function(){
$(this).html($(this).text());
});
$("td",this).html("<font color='red'>" + $(this).text() + "</font>");
});

});
</script>
</head>

<body>
<table id="t">
<tr><td><font color='red'>内容不可移出</font></td></tr>
<tr><td><font color='red'>内容不可移出</font></td></tr>
<tr><td><font color='red'>内容不可移出</font></td></tr>
</table>
</body>
</html>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Zy_try
2011-06-17 · TA获得超过291个赞
知道小有建树答主
回答量:848
采纳率:0%
帮助的人:189万
展开全部
囧~
$("tr").each(function () {
var tr = $(this);
$(this).bind("mouseover", function () {
$("tr td").each(function () {
$(this).html($(this).find("font").text());
});
});

tr.find("td").wap("<font color='red'></font>");
});
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式