Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为这很简单,但我没有找到它。所以,我有一个表单,当用户编辑它时,我想在标签和特定字段的文本框之间显示一条消息。
只需向onchange事件添加一个函数:
onchange
<input type="text" onchange="yourEvent()" /> <span id="message" style="display:none">Your message</span> function yourEvent() { var msg = document.getElementById('message'); msg.style.display = "block"; }