一个页面加入另一个页面
一个网页加入另一个网页可以用
<iframe src="head.html" width="100%" height="196px"></iframe>
宽度调到合适位置
css样式
iframe{
border: none;
overflow: hidden;
margin-bottom: -4px;
}
如果含有a标签则需要在a标签上加 target="_top"
一个网页加入另一个网页可以用
<iframe src="head.html" width="100%" height="196px"></iframe>
宽度调到合适位置
css样式
iframe{
border: none;
overflow: hidden;
margin-bottom: -4px;
}
如果含有a标签则需要在a标签上加 target="_top"