为什么网址不加载

时间:2012-09-27 21:31:31

标签: javascript jquery html jquery-ui

我有代码

<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>'

1 个答案:

答案 0 :(得分:4)

'<iframe src="' + sizeUrl + '" width="100%" height="100%">'

您没有打破字符串以包含您的变量。