jquery选择body中的title标记时的异常情况
2010-09-14 13:08:43 来源:WEB开发网核心提示:jQuery的选择器,在选择body中出现的title标记时,jquery选择body中的title标记时的异常情况,会出现和预期不同的效果,测试代码如下所示
jQuery的选择器,在选择body中出现的title标记时,会出现和预期不同的效果,测试代码如下所示。
<html>
<head>
<script src="jquery-1.2.js"></script>
<script>
$(document).ready (
function () {
console.info($("title"));
console.info($("not_title"));
console.info($("div title"));
console.info($("div not_title"));
}
);
</script>
</head>
<body>
<title>a single title tag, can be selected.</title>
<not_title>a single not_title tag, can be selected.</not_title>
<div>
<title>a title tag embeded in div tag, can not be selected.</title>
</div>
<div>
<not_title>a not_title tag embeded in div tag, can be selected.</not_title>
</div>
</body>
</html>
- ››jquery .ajax方法 异步表单,接收服务器返回的数据...
- ››jquery 添加\删除 cookie
- ››jquery 正则表达式判断是否为正确邮箱格式
- ››jQuery EasyUI 数字框(NumberBox)用法
- ››JQuery中对option的添加、删除、取值
- ››JQuery实现下拉,单选,复选三大控件方法,
- ››jquery实现判断输入文字个数的代码
- ››jQuery bxCarousel实现图片滚动切换效果
- ››jQuery弹性滑动导航菜单
- ››jquery实现全选反选功能
- ››jQuery 屏蔽单个元素使用户无法点击
- ››jquery做复选框的全选、全部选、反选更加简单
更多精彩
赞助商链接