加载后的jQuery调用函数

前端之家收集整理的这篇文章主要介绍了加载后的jQuery调用函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
需要调用一个过滤功能对一些选项基于无线电选择 (Link here),如何在页面加载后调用这个?无线电设置从DB呼叫,我想过滤的选项

解决方法

$(document).ready(my_function);

要么

$(document).ready(function () {
  // Function code here.
});

或者更短但更不易读的变体:

$(my_function);

所有这些将导致在DOM加载后调用my_function。

有关更多详细信息,请参阅ready event文档。

Binds a function to be executed
whenever the DOM is ready to be
traversed and manipulated.

编辑:

要模拟点击,请使用无参数的click()方法

$('#button').click();

docs

Triggers the click event of each
matched element. Causes all of the
functions that have been bound to that
click event to be executed.

为了将它们放在一起,以下代码模拟文档完成加载时的点击:

$(function () {
  $('#button').click();
});
原文链接:https://www.f2er.com/jquery/184168.html

猜你在找的jQuery相关文章