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.
在我正在开发的应用程序中,用户在验证后需要做的第一件事是在输入表单中输入名称并保存。
如果用户尝试在未输入内容并保存的情况下离开表单,我希望能够检测到这种行为并阻止它,可能会发出警告,提醒他们必须首先保存表单(而不是给他们选择)。
我知道如何使用 jquery .change() 检查输入框的内容是否已更改,但我不知道如何检查是否没有任何更改。
您必须存储每个输入元素的初始状态,然后对其进行测试。
我写了一个jsfiddle来为复选框做这件事,但你会明白的。