我想建立一個費用計算器,爲此我需要訪問表單,我想知道我是否可以在jQuery中完成。 所以我的代碼是:如何訪問表單選擇jQuery?如何從輸入的金額中獲取「%」?
<form id="fee">
<input type="text" title="fee" placeholder="Place the amount that you would like to send"/> $
<input type="submit" onclick="getFee()"/>
</form>
<br/>
<p id="Here will be the fee"></p>
而且JS:
function getFee(){
$("fee > input:fee").
}
這裏是我的問題。我想知道如何獲取用戶在輸入中輸入的金額並添加10%的金額,然後將其打印在下面的段落中。
未來,請儘量在您的問題上更加一致,並提供您正在嘗試做什麼的完整說明。 – 2013-04-11 20:33:41