私はコードを持っています
<span id="urlWindow" style="float:right;" value="http://www.mysite.com">Open Url</span>
sizeUrl の値はhttp://www.mysite.comです。
しかし、次のコードはロードされません
var sizeUrl = $('#urlWindow').attr('value');
newWindow.document.write(
'<html>' +
'<iframe src=" + sizeUrl + " width="100%" height="100%">'+
'</iframe>' +
'</html>'
これはどこで
var sizeUrl = $('#urlWindow').attr('value');
newWindow.document.write(
'<html>' +
'<iframe src=" http://www.mysite.com " width="100%" height="100%">'+
'</iframe>' +
'</html>'