使用回车键按下表单提交或单击提交按钮

时间:2013-06-25 13:41:58

标签: javascript html forms submit

我有一个表单,我希望用户能够使用

输入密钥或点击按钮提交。

这是我的代码:

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

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您的表单需要提交按钮...因此请在表单中添加<input type="submit" value="Submit"/>

您应该查看these articles on HTML Forms ...