调用JavaScript函数名称在变量中

调用JavaScript函数名称在变量中

本文介绍了调用JavaScript函数名称在变量中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

接下来的问题是:
假设我们有一个select。
Onchange事件我们需要调用一些函数,但是这个函数的名字保存在变量中。
如何调用这个函数?

解决方案

  window [name] 

您可以通过名称引用调用函数,方法是将它们选择为窗口的属性并执行它们


The problem is next:Assume that we have a select.Onchange event we need to call some function, but name of this function kept in variable.How to call this function ?

解决方案
window[name]()

You can call functions by name reference by selecting them as a property of window and executing them

这篇关于调用JavaScript函数名称在变量中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 03:09