我有我想要的用戶能夠使用形式輸入按鍵提交或點擊提交按鈕
回車鍵或點擊按鈕提交表單。
這裏是我的代碼:
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Blah</title>
<script type="text/javascript">
function SetSrc()
{
document.getElementById("myIfreme1").src = 'http://' +
document.getElementById("txtSRC").value;
}
</script>
</head>
<body>
<form>
Enter URL: http://
<input type="text" id="txtSRC" />
<input type="button" value="GO" onclick="SetSrc()" />
</form>
<div style="clear:both">320 width</div>
<iframe id="myIfreme1" src="" frameborder="0" marginwidth="0" height="480" width="320"
scrolling="yes"></iframe>
</body>
</html>
感謝您的幫助。
你能不能谷歌的HTML表單提交 – user568109
我可能會建議把什麼不工作的一些詳細信息。例如,在這種情況下,我想象你沒有一個按鈕可以點擊。 – jhoyla