ループに問題がありますが、ユーザーが YouTube ビデオのサムネイルを取得できるツールを作成しました。動画のウォッチ ID を入力すると画像が表示されますが、別の ID を入力に再入力しても変更されません。ループ/複数の画像グラブを可能にするためにコードを変更するにはどうすればよいですか?
<!doctype html>
<html>
<head>
<title>Thumbnail Grabber</title>
<script type="text/javascript">
window.onload = function()
{
document.getElementById( 'inp' ).onkeyup = keyUp;
}
function keyUp()
{
var img = document.getElementById( 'image' );
img.src = img.src.replace( /url=[^&]+/, this.value +'/maxresdefault.jpg' );
}
</script>
</head>
<body>
<input type="text" id="inp">
<img id="image" src="http://img.youtube.com/vi/url=example/">
</body>