Показать сообщение отдельно
  #2 (permalink)  
Старый 01.01.2016, 17:02
без статуса
Отправить личное сообщение для Deff Посмотреть профиль Найти все сообщения от Deff
 
Регистрация: 25.05.2012
Сообщений: 8,219

<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">

</style>
</head>
<body>

<script>
function openinframe(target) {
document.getElementById('window1').src = target;
}
</script>
 
<form>
<div>
<button type="button" onclick="document.getElementById('select0').selected=true;openinframe('')">Х</button>
<select>
<option id="select0" selected onclick="openinframe('')">Выберите ссылку</option>
<option onclick="openinframe('http://javascript.ru/forum/')"> сайт 1</option>
<option onclick="openinframe('http://habrahabr.ru/top/')"> сайт 2</option>
<option onclick="openinframe('https://www.google.ru/')"> сайт 3</option>
</select>
</div>
</form>
 
<div>
<iframe width="100%" height="300" scrolling="auto" frameborder="0" id="window1"></iframe>
</div>

</body>
</html>

Последний раз редактировалось Deff, 01.01.2016 в 17:26.
Ответить с цитированием