change()是 jQuery 中的一个内置方法,用于检测输入字段值的变化。此方法仅适用于“、
句法 :
$(selector).change(function)
参数:它接受一个可选参数“函数”。
返回值:返回修改后的元素。
显示 change() 方法工作的 jQuery 代码:
代码#1:
在下面的代码中,没有函数传递给 change 方法。
Click the button to see the changed value !!!
Enter value:
输出:
在点击“点击我”按钮之前——
点击“点击我”按钮后——
代码#2:
在下面的代码中,函数被传递给 change 方法。
Enter Value:
Write something in the input field, and then
press enter or click outside the field.
输出:
在“输入值:”框中输入任何值之前 –
在“输入值:”框中输入“GeeksforGeeks”的值并在框外单击后-
jQuery 是一个开源 JavaScript 库,它简化了 HTML/CSS 文档之间的交互,它以其“少写,多做”的理念而广为人知。
您可以按照此 jQuery 教程和 jQuery 示例从头开始学习 jQuery。