我正在尝试在我的项目中创建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
答案 0 :(得分:1)
你的追加是附加到一个类,改为ID。
.appendTo(” RESULT2' 。);
- &GT;
.appendTo( '#RESULT2');