<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<select>
<option class="option_page" value="page1.html">page1</option>
<option class="option_page" value="page2.html">page2</option>
</select>
<br><br>
<iframe id="mark_frame" src="page1.html"></iframe>
<script>
$('.option_page').click(function() {
var page = $(this).val();
$('#mark_frame').attr("src", page);
});
var iframe = window.frames[0];
$(iframe).mouseover(function(e) {
if (e.target.children.length == 0) {
$(e.target).css({
border: "1px solid blue",
cursor: "pointer"
});
}
});
$(iframe).mouseout(function(e) {
$(e.target).css({
border: "none"
});
});
</script>
</body>
</html> |