我想建立一个费用计算器,为此我需要访问表单,我想知道我是否可以在 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% 的金额,然后在下面的段落中打印出来。