iframe内的基本网址无法正常工作

时间:2018-05-02 05:03:28

标签: javascript html iframe

我在http://localhost:3000上托管了一个网络应用 在该网络应用上,我有一个src="http://localhost:8000

的iframe

我的问题是,iframe中的相对路径使用的是http://localhost:3000而不是http://localhost:8000,即使我在iframe中有基本标记

main.html:http://localhost:3000

<iframe src="http://localhost:8000"></iframe>

iframe.html:http://localhost:8000

<!DOCTYPE html>
<html lang="en">
<head>
  <base href="http://localhost:8000/">
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <link rel="stylesheet" href="/static/assets/css/index.css">
  <!-- this is using http://localhost:3000 instead of http://localhost:8000 -->
</head>
<body>

</body>
</html>

enter image description here

我在某处做错了吗?

0 个答案:

没有答案