我是靠谱客的博主 有魅力超短裙,最近开发中收集的这篇文章主要介绍jquery选择body中的title标记时的异常情况 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官方网站]
http://jquery.com/[jQuery下载地址]
http://docs.jquery.com/Downloading_jQuery[jQuery当前版本]
http://docs.jquery.com/Release:jQuery_1.2[jQuery相关论坛]
http://groups.google.com/group/jquery-en[jQuery关键词]
jQuery[jQuery特效]
jQuery淡入特效,http://docs.jquery.com/Effects/fadeIn
[jQuery选择器]
表单元素选择器, http://docs.jquery.com/DOM/Traversing/Selectors#Form_Selectors属性相等选择器,http://docs.jquery.com/Selectors/attributeEquals
选择器在选择body中出现的title标记时,会出现和预期不同的效果。
[jQuery常用函数]
ajax, http://docs.jquery.com/Ajax/jQuery.ajax
attr访问自定义属性,减少javascript脚本中代码和数据的耦合
click, 绑定元素的onclick事件,http://docs.jquery.com/Events/click
filter, 用于在集合中过滤元素
attr访问自定义属性,减少javascript脚本中代码和数据的耦合
click, 绑定元素的onclick事件,http://docs.jquery.com/Events/click
hover, 用于设置元素响应mouseover和mouseleave
[jQuery插件]
Easing,http://jquery.com/plugins/project/easingjCarouseLite, 走马灯效果, http://jquery.com/plugins/project/jCarouselLite
tableFilter, 表过滤器, http://jquery.com/plugins/project/tableFilter
[jQuery重要工具]
http://www.json.org/, http://www.json.org/json.js最后
以上就是有魅力超短裙为你收集整理的jquery选择body中的title标记时的异常情况 jquery选择body中的title标记时的异常情况的全部内容,希望文章能够帮你解决jquery选择body中的title标记时的异常情况 jquery选择body中的title标记时的异常情况所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复