基于jQuery的为attr添加id title等效果的实现代码

 更新时间:2011年04月20日 21:13:28   作者:  
下面的例子是通过jquery为连接增加title描述的代码,在当前页的连接上写上,你好,现在在试验连接文字的简单描述。
核心代码:
复制代码 代码如下:

<script language="javascript" type="text/javascript">
$(document).ready(function(){
//$('div.chapter a').attr({'rel':'external'});
$('div.chapter a').each(function(index){
var $linkthis=$(this)
$linkthis.attr({
'rel':'external',
'id':'wikilink-'+index,
'title':'你好,现在在试验'+$linkthis.text()
});
});
$('#wikilink-1').css('fontSize',33);
});
</script>

完整测试代码:
复制代码 代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DOM Manipulation</title>
<script language="javascript" src="http://demo.jb51.net/jslib/jquery/jquery-1.5.2.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
//$('div.chapter a').attr({'rel':'external'});
$('div.chapter a').each(function(index){
var $linkthis=$(this)
$linkthis.attr({
'rel':'external',
'id':'wikilink-'+index,
'title':'你好,现在在试验'+$linkthis.text()
});
});
$('#wikilink-1').css('fontSize',33);
});
</script>
</head>
<body>
<!-- Begin example -->
<h1 id="f-title">Flatland: A Romance of Many Dimensions</h1>
<div id="f-author">by Edwin A. Abbott</div>
<h2>Part 1, Section 3</h2>
<h3 id="f-subtitle">Concerning the Inhabitants of Flatland</h3>
<div id="excerpt">an excerpt</div>
<div class="chapter">
<p class="square">Our Professional Men and Gentlemen are Squares (to which class I myself belong) and Five-Sided Figures or <a href="http://en.wikipedia.org/wiki/Pentagon">Pentagons</a>.</p>
<p class="nobility hexagon">Next above these come the Nobility, of whom there are several degrees, beginning at Six-Sided Figures, or <a href="http://en.wikipedia.org/wiki/Hexagon">Hexagons</a>, and from thence rising in the number of their sides till they receive the honourable title of <a href="http://en.wikipedia.org/wiki/Polygon">Polygonal</a>, or many-Sided. Finally when the number of the sides becomes so numerous, and the sides themselves so small, that the figure cannot be distinguished from a <a href="http://en.wikipedia.org/wiki/Circle">circle</a>, he is included in the Circular or Priestly order; and this is the highest class of all.</p>
<p><span class="pull-quote">It is a Law of Nature <span class="drop">with us</span> that a male child shall have <strong>one more side</strong> than his father</span>, so that each generation shall rise (as a rule) one step in the scale of development and nobility. Thus the son of a Square is a Pentagon; the son of a Pentagon, a Hexagon; and so on.</p>
</div>
</body>
</html>

相关文章

  • jQuery中insertBefore()方法用法实例

    jQuery中insertBefore()方法用法实例

    这篇文章主要介绍了jQuery中insertBefore()方法用法,实例分析了insertBefore()方法的功能、定义及把匹配的元素插入到另一个指定的元素集合前面的使用技巧,需要的朋友可以参考下
    2015-01-01
  • JQuery 在线引用及测试引用是否成功

    JQuery 在线引用及测试引用是否成功

    这篇文章主要介绍了JQuery 在线引用及测试引用是否成功的示例,需要的朋友可以参考下
    2014-06-06
  • jQuery实现自定义事件的方法

    jQuery实现自定义事件的方法

    这篇文章主要介绍了jQuery实现自定义事件的方法,实例分析了jQuery自定义事件的定义与使用方法,需要的朋友可以参考下
    2015-04-04
  • JQUERY THICKBOX弹出层插件

    JQUERY THICKBOX弹出层插件

    JQUERY插件THICKBOX的功能很强大,但是它的基本使用却很简单容易.但是要研究的更深,运用得更加灵活的话,还是有点难度,根据其官方站点介绍
    2008-08-08
  • jQuery数组处理函数整理

    jQuery数组处理函数整理

    下面小编就为大家带来一篇jQuery数组处理函数整理。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2016-08-08
  • easyui 中的datagrid跨页勾选问题的实现方法

    easyui 中的datagrid跨页勾选问题的实现方法

    很多朋友都遇到这样的需求,easyui的datagrid分页显示数据,如果有需求要求勾选多条数据且不再同一页中,easyui会保存在其他页选中的数据吗?小编结合资料自己整理了一篇文章,需要的的朋友参考下吧
    2017-01-01
  • JQUERY对单选框(radio)操作的小例子

    JQUERY对单选框(radio)操作的小例子

    在aspx文件中使用一个RadioButtonList控件显示两个radio标签。表示一对选中状态:
    2013-04-04
  • jquery+ajax实现上传图片并显示上传进度功能【附php后台接收】

    jquery+ajax实现上传图片并显示上传进度功能【附php后台接收】

    这篇文章主要介绍了jquery+ajax实现上传图片并显示上传进度功能,结合实例形式分析了jQuery+ajax结合layer.js插件与php后台交互,实现显示上传进度的相关操作技巧,需要的朋友可以参考下
    2019-06-06
  • jquery事件与绑定事件

    jquery事件与绑定事件

    本文主要介绍了jquery事件与绑定事件的相关知识,具有很好的参考价值。下面跟着小编一起来看下吧
    2017-03-03
  • jQuery实现仿腾讯微博滑出效果报告每日天气的方法

    jQuery实现仿腾讯微博滑出效果报告每日天气的方法

    这篇文章主要介绍了jQuery实现仿腾讯微博滑出效果报告每日天气的方法,涉及jQuery鼠标事件及css样式操作技巧,需要的朋友可以参考下
    2015-05-05

最新评论