html中title标签换行的方法集

时间:2022-11-11 08:55:56

 

 

 今天一个朋友问我关于titile换行的问题,于是总结了一下,给大家分享!

1.将 title 属性分成几行来写

html中title标签换行的方法集            < a    href ="#"   title ="第一行 
html中title标签换行的方法集                   第二行"
> title换行 </ a >

 

 2.(推荐)用转义符实现换行(&#10)、(&#13)、(&#xd)

html中title标签换行的方法集            < a    href ="#" title ="第一行&#10;第二行" > title换行 </ a >
html中title标签换行的方法集           
< a    href ="#" title ="第一行&#13;第二行" > title换行 </ a >
html中title标签换行的方法集           
< a    href ="#" title ="'第一行&#xd;第二行" > title换行 </ a >

 

 3.javascript大法,方法之一,其余大家总结

html中title标签换行的方法集            < a    href ="#"    title =""    id =messageOfx > title换行 </ a >
html中title标签换行的方法集html中title标签换行的方法集           
< script  language ="JavaScript" > ...    
html中title标签换行的方法集            
<!--   
html中title标签换行的方法集                  
var   str="第一行第二行";   
html中title标签换行的方法集                  document.all.messageOfx.title
=str;   
html中title标签换行的方法集           
//-->   
html中title标签换行的方法集
           
</ script >  

三种方法,个人认为第二个方便实用,故荐之!