我认为这只是一个初学者问题,我想将我的变量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>')
答案 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>')