我正在动态传递一些网址,如http://IP:port/MyProject/dashboard.do?method=loadDashboard。 不加载在浏览器中加载的相同操作类的某些方法。 这里的方法名称如loadDP。 http://IP:port/MyProject/dashboard.do?method=loadDP
$("#containerId").html(' <ifrme id="iframeId" src= '+ url +' style="width: 100%; height: 100%;"></iframe>');
答案 0 :(得分:0)
您遇到拼写错误问题,iframe
属性{/ 1}},ifrme
属src
,$("#containerId").html('<iframe id="iframeId" src="'+ url +'" style="width: 100%; height: 100%;"></iframe>');
//----------------------^^^^^^^^------------------^--here---^
缺少引号
Intent a = new Intent(this, A.class);
a.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(a);