您可以使用iframe标签显示另一个页面。
<iframe src="http://www.example.com"></iframe>
Run Code Online (Sandbox Code Playgroud)
您的HTML
<a class="tiptext">A link
<iframe class="description" src="http://www.example.com"></iframe>
</a>
Run Code Online (Sandbox Code Playgroud)
您的CSS
.tiptext {
color:#069;
cursor:pointer;
}
.description {
display:none;
position:absolute;
border:1px solid #000;
width:400px;
height:400px;
}
Run Code Online (Sandbox Code Playgroud)
你的JS
$(".tiptext").mouseover(function() {
$(this).children(".description").show();
}).mouseout(function() {
$(this).children(".description").hide();
});
Run Code Online (Sandbox Code Playgroud)
JSFiddle:http : //jsfiddle.net/yboss/q29tP/
| 归档时间: |
|
| 查看次数: |
8984 次 |
| 最近记录: |