无法使用jquery创建新的iframe

时间:2017-04-13 06:00:05

标签: javascript jquery jsp iframe

我正在尝试在我的项目中创建iframe。

JS中的

 function callPage(pagename)
     {
    $('<iframe>', { id:  'result1', frameborder: 0, scrolling: 'no'
         }).appendTo('.result2');
   document.getElementById("result1").src<%=ApplicationParams.getAppUrl()%>action/"+pagename;

 } 
JSP中的

 <div id="result2">
            </div>

请建议给我?怎么了?

Error  : Uncaught TypeError: Cannot set property 'src' of null

1 个答案:

答案 0 :(得分:1)

你的追加是附加到一个类,改为ID。

.appendTo(” RESULT2' 。);

- &GT;

.appendTo( '#RESULT2');