使用 jQuery 单击后,如何将 div 的宽度增加指定的像素?
在本文中,我们将学习如何使用 jQuery 在单击后按指定像素增加分区的宽度。
我们可以使用用于在 JQuery 中返回和设置元素宽度的width()方法来完成此任务。因此,当我们单击它时,会调用一个函数,在该函数中,我们首先使用 width() 方法将 div 的当前宽度存储在一个变量中,然后增加指定的像素并使用 JQuery 中的 width(value) 方法设置其宽度。
句法:
// To return the width of the selected element
$(selector).width()
// To set the width of the selected element
$(selector).width(value)
例子:
HTML
GeeksforGeeks
Click to Div to increase the width
输出: