更新iframe src

时间:2013-10-14 03:11:43

标签: javascript iframe google-chrome-extension

我有一个与iframe链接的简单chrome扩展程序。 src指向具有各种子页面的域。当用户点击iframe并且面板消失时。 src被遗忘,一旦重新激活,它会重新加载原始src而不是用户最后停止的页面。是否可以通过javascript保存iframes src并为用户更新?

的manifest.json

{
"name": "Test",
"version": "1",
"manifest_version": 2,
"browser_action":{
"default_icon":"icon.png",
"default_popup":"popup.html",
"default_title": "Test"
}
}

popup.html

<html lang="en" dir="ltr">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<body style="padding:0; margin:0;"><iframe style="padding:0; margin:0;" width="315"height="306" src="http://www.example.com"></iframe>
</body>
</html>

0 个答案:

没有答案