Показать сообщение отдельно
  #7 (permalink)  
Старый 04.10.2018, 00:05
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

<!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>
	<style>
	.block{
		width: 70px;
		height: 70px;
	}
	</style>
</head>
<body>
<input type="radio"  value="https://javascript.ru/forum/image.php?u=60299&dateline=1537303725" name="radioButton" id="radioButton1">1 
<input type="radio" value="https://javascript.ru/forum/image.php?u=7416&dateline=1372796129" name="radioButton" id="radioButton2">2
<div class="block"></div>

<script>

$('input[type="radio"]').click(function(){
  $(".block").css({"backgroundImage": "url(" + this.value + ")"});
});

</script>
</body>
</html>
Ответить с цитированием