js中的iframe如何更改src,求正确写法。
var string="trp.html"
document.writeln("<iframe src=\"'+string+'\"></iframe>");
这是js里面的一体贴代码,这个src=\"'+string+'\总是取不对值。这个写法肯定是不对,求正确写法。
------解决方案--------------------document.writeln('<iframe src="'+ string+ '"></iframe>');
------解决方案--------------------或者把你的'换成"
document.writeln("<iframe src=\""+string+"\"></iframe>");