我正在使用ImpactJS
引擎開發一款遊戲,我創建了一個包含輸入框和提交按鈕的基本表單。我能夠從輸入框中檢索值,但我想要的是,當玩家點擊提交輸入框中的任何值時,就會獲取提示,我應該能夠在提交點擊時獲得該值。如果值爲空,我應該得到一個警告,說「沒有價值或任何」。我想使用這個最終值,並將其分配給一個變量,我可以在Impact引擎中的JavaScript文件中使用該變量來跟蹤遊戲中的輸入。我對HTML,CSS一般是新手,所以我不知道如何實現這一點。提交按鈕時提取輸入框值點擊
下面是我的HTML/CSS代碼,它有一個輸入框和一個提交按鈕。
<!DOCTYPE html>
<html>
<head>
<title>Impact Game</title>
<style type="text/css">
html,body {
background-color: #333;
color: #fff;
font-family: helvetica, arial, sans-serif;
margin: 0;
padding: 0;
font-size: 12pt;
}
#problemform {
display: none;
width: 300px;
height: 100px;
}
#probleminput {
position: absolute;
display: none;
top: 450px;
left: 240px;
height: 50px;
width: 350px;
}
#problemsubmit {
position: absolute;
display: none;
top: 530px;
left: 623px;
height: 40px;
width: 100px;
padding: 5px 10px 8px 2px;
}
#prob_submit_msg {
width: 30%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#canvaswrapper {
position: relative;
height: 768px;
width: 1024px;
display: block;
margin: auto;
margin-top: 80px;
vertical-align: middle;
}
#canvas {
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
</style>
<script type="text/javascript" src="lib/jquery.min.js"></script>
<script type="text/javascript" src="lib/impact/impact.js"></script>
<script type="text/javascript" src="lib/game/main.js"></script>
</head>
<body>
<div id="canvaswrapper">
<canvas id="canvas" width="1024" height="768"></canvas>
<div id="problemform" class="form-inline">
<input id="probleminput" class="form-inline" type="text" style="display: inline;"></input>
<button id="problemsubmit" class="btn" style="display: inline-block;">Submit</button>
</div>
<div id ="prob_submit_mssg" style="display: block;"></div>
</div>
</body>
</html>
下面是不同的JS文件顯示輸入框,並使用jQuery
ProblemDisplay:function() {
this.setQuestion('This is a title','this is where the body will go and it will be super long and impossible to read or understand.', 'This is a hint');
this.isActive = true;
var form = $("#problemform");
var inputBox = $("#probleminput");
var submitButton = $("#problemsubmit");
form.show();
inputBox.show();
submitButton.show();
},
這是我的工作,現在提交按鈕我的ImpactJS
代碼塊。但是現在我希望在輸入框中傳遞的字符串在單擊提交按鈕時存儲在另一個變量中。如何實現這一目標?
謝謝!
所以,你只需要有一個事件提交按鈕,當提交按鈕事件firred得到的值輸入?而已? – Pavlo
雖然基本上它更復雜。它就像我們構建的問題答案界面。因此,無論何時玩家在文本字段中輸入答案並按下提交,我都必須將該答案存儲在某個變量中。我應該能夠在我的js文件中使用該變量來檢查答案是否與數據庫中存儲的答案相匹配(mongodb)。這是設計。我不知道我是否在正確的軌道上實現這一目標。 – Htlcs