将javascript值传递给html链接

时间:2015-03-07 06:28:34

标签: javascript variables text

我认为这只是一个初学者问题,我想将我的变量urlvar1的值添加到链接中。 但是看起来这不起作用。

document.write('<iframe id="frame" src="http://www.xxx.xx?ATID="'+urlvar1+'" title="project" frameborder="no" border="0">Your browser does not seem to handle frames properly, but you can go directly to the survey <a href="http://www.xxx.xx?ATID="'+urlvar1+' ">here</a>')

1 个答案:

答案 0 :(得分:0)

每个"属性中都有一个额外的双引号href

目前的内容如下:

href="http://www.xxx.xx?ATID="string"

它应该读作:

href="http://www.xxx.xx?ATID=string"

请参阅下面的工作字符串:

document.write('<iframe id="frame" src="http://www.xxx.xx?ATID='+urlvar1+'" title="project" frameborder="no" border="0">Your browser does not seem to handle frames properly, but you can go directly to the survey <a href="http://www.xxx.xx?ATID='+urlvar1+'">here</a>')