当前位置: 代码迷 >> JavaScript >> js设置title属性时怎么表示换行符?
  详细解决方案

js设置title属性时怎么表示换行符?

热度:471   发布时间:2012-02-09 18:22:27.0
js设置title属性时如何表示换行符???
<body>
<a   href= "xxxx.aspx "   id= "test "   title= "aaa&#13;\\naaa "> new </a>
</body>

以上能正确换行

aaa
\\naaa

当用js指定时:
<script>
                        window.onload=function   (){
                                documnet.getElementById( 'test ').setAttribute( 'title ', 'now&#13;changed ');
                        }
</script>
</HEAD>
<body>
<a   href= "xxxx.aspx "   id= "test "   title= "aaa&#13;\\naaa "> new </a>
</body>
</HTML>

链接的title变为了:now&#13;changed

也就是说换行关健字&#13;此时没有起作用,请问该如何设置!

3Q

------解决方案--------------------
<script>
window.onload=function (){
document.getElementById( 'test ').setAttribute( 'title ', 'now\nchanged ');
}
</script>
</HEAD>
<body>
<a href= "xxxx.aspx " id= "test " title= "aaa&#13;\\naaa "> new </a>
</body>
  相关解决方案