link 带有转义序列 html
link with escape-sequence html
我有一个关于 link 的转义问题...
var linkregion= '<a href=\"http://www.example.com/Reg_'+numeroReg+'\" target=\"blank\">'+'Description of Reg: '+numeroReg+'</a>';
document.getElementById('linkreg').innerHTML = linkregion;
<span id="linkreg"></span>
numeroReg
是一个数字
但是当文档准备好后,在 link 的第一行有:">
见图:
http://i58.tinypic.com/2enm62f.png
我希望你能帮助我:(
谢谢
双引号不能转义,因为字符串是单引号。
var linkregion = '<a href="http://www.example.com/Reg_' + numeroReg + '" target="blank">Description of Reg: ' + numeroReg + '</a>';
我有一个关于 link 的转义问题...
var linkregion= '<a href=\"http://www.example.com/Reg_'+numeroReg+'\" target=\"blank\">'+'Description of Reg: '+numeroReg+'</a>';
document.getElementById('linkreg').innerHTML = linkregion;
<span id="linkreg"></span>
numeroReg
是一个数字
但是当文档准备好后,在 link 的第一行有:">
见图:
http://i58.tinypic.com/2enm62f.png
我希望你能帮助我:(
谢谢
双引号不能转义,因为字符串是单引号。
var linkregion = '<a href="http://www.example.com/Reg_' + numeroReg + '" target="blank">Description of Reg: ' + numeroReg + '</a>';