svnno****@sourc*****
svnno****@sourc*****
2009年 10月 18日 (日) 22:10:03 JST
Revision: 1346 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1346 Author: dhrname Date: 2009-10-18 22:10:03 +0900 (Sun, 18 Oct 2009) Log Message: ----------- http://d.hatena.ne.jp/bellbind/20090404/1238821485 上記のコードを使用して、リンクのツールチップに対応させた Modified Paths: -------------- branches/05x/052/sie.js Modified: branches/05x/052/sie.js =================================================================== --- branches/05x/052/sie.js 2009-10-15 14:47:50 UTC (rev 1345) +++ branches/05x/052/sie.js 2009-10-18 13:10:03 UTC (rev 1346) @@ -1765,6 +1765,7 @@ NAIBU.XLink = function( /*element*/ ele) { this.tar = ele; var href = ele.getAttribute("xlink:href"); + this.title = ele.getAttribute("xlink:title"); if (href) { //xlink:href属性が指定されたとき this.show = ele.getAttribute("xlink:show"); var base; @@ -1824,6 +1825,15 @@ } this.tar.setAttribute("href",uri); } + if (this.title) { + var node = this.tar.firstChild; + while(node) { + if (node.nodeType === 1) { + node.setAttribute("title", this.title); + } + node = node.nextSibling; + } + } } catch(e) {stlog.add(e,17155);} }