我想在jQuery中执行一些任务时,我的JavaScript中的一些其他函数被调用。
为了解释这个问题:假设我有JavaScript中的function foo(){..}
。
当我的代码处于执行阶段时,我想在function foo(){..}
被调用时使用jQuery执行一些操作。
小样:
<!DOCTYPE html>
<title>Demo</title>
<body>
<script>
function foo()
{
alert("Function Called");
}
...Some code....
if(some condition)
foo(); //function Call - I want to execute jQuery event when this line is executed.
else
woo();
</script>
</body>
</html>
是否有任何事件处理程序可以实现这一点?
看到更新后的问题后,处理这个问题的唯一方法是将jquery函数与函数foo()放在同一级别,并从那里调用它,如本例所示。