<!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>