警报框中的箭头功能在表单的'onsubmit'按钮上触发



我的this代码按原样输出函数,但我希望它返回'p8'id的值,并且我希望使用箭头函数。

<form onsubmit="alert(()=>{document.getElementById('p8').value})">
<label>PAlindrome</label>
<input type="text" id="p8"><br>
<input type="submit">
</form>

您需要调用函数。这是通过将()添加到(function)来完成的。

<form onsubmit="alert((()=>{document.getElementById('p8').value})())">
<label>PAlindrome</label>
<input type="text" id="p8"><br>
<input type="submit">
</form>

或者更简单:

<form onsubmit="alert(document.getElementById('p8').value)">
<label>PAlindrome</label>
<input type="text" id="p8"><br>
<input type="submit">
</form>

相关内容

  • 没有找到相关文章

最新更新