日安關閉一個div!我想問一下如何使用回車鍵關閉div(對話框); 我有這樣的代碼:使用回車鍵
<script>
function sendbutton(){
//code to make the hidden div visible upon onclick
}
</script>
<style>
.button {
height: 25px;
width: 90px;
}
.sendmessage {
height: 60%;
width: 60%;
visibility: hidden;
}
</style>
</head>
<body>
<form name="reg" id="myform">
<ul>
<li>customer first name</li>
<li><input type="text" id="userfirstname" /></li>
<li><div class="button" onclick="sendbutton(); return false;">send</div></li>
</ul>
</form>
<div class="sendmessage">
<p>your message was successfully sent!</p>
<div class="niokbutton" onclick="okbuttonsend()">ok</div>
</div>
它是這樣的,我想用戶填寫了我發的形式,按發送(這是一個div),它會顯示一條消息(一個div或者一個對話框後,我做的那個是隱藏的);如何在按下回車鍵時關閉此對話框?
如果可能的話只有JavaScript沒有jQuery,請。
它不是完全在表單字段上,他們應該按下回車鍵,它是當他們按下發送按鈕(這是我做的對話框或div),並且當該消息顯示它會說消息發送成功!在一個對話框,該消息出現後我希望用戶使用的不只是使用的onclick股利(或OK包廂)輸入鍵關閉,那麼它是否可以關閉這個div(隱藏在第一,但將成爲後可見onclick)使用回車鍵? – user3359630
查看我的回答低於 – LGSon