http://expert.csdn.net/Expert/topic/2361/2361736.xml?temp=.5450098你的信誉分真夸张:)

解决方案 »

  1.   

    http://expert.csdn.net/Expert/topic/2361/2361736.xml?temp=.5450098这个只是改变标题栏的title并不改变<a title="111" id="a1">djfdkf</a>的title吧
      

  2.   

    你想要这个效果?:
    <HTML>
    <HEAD>
    <TITLE>title Property</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
    // global counting variable
    var count = 0
    function setToolTip(elem) 
    {
    elem.title = "You have previously rolled atop this paragraph " +
    count + " time(s)."
    }
    function incrementCount(elem) 
    {
    count++
    setToolTip(elem)
    }
    </SCRIPT>
    </HEAD>
    <BODY>
    <H1>title Property Lab</H1>
    <HR>
    <P ID="myP" TITLE="First Time!" onMouseOver="incrementCount(this)">
    Roll the mouse over this paragraph a few times.<BR>
    Then pause atop it to view the tooltip.</P>
    </BODY>
    </HTML>
      

  3.   

    to hazeline:
    我试了你的方法,不行.