フォーム テキスト ボックスから入力した URL を iFrame ウィンドウに表示したいので、iframe src="" をフォーム フィールド入力に変更します。どうやってやるの?これが私が使用するつもりのサンプルコードです。
<html>
<head>
<title>Blah.</title>
<link href="style.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form>
Enter URL: <input type="text" />
<input type="submit" value="GO" />
</form>
<iframe src="" frameborder="0" marginwidth="0" scrolling="yes"></iframe>
</body>
</html>