Home  >  Article  >  Web Front-end  >  Example analysis of dynamic function usage in javascript_javascript skills

Example analysis of dynamic function usage in javascript_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:58:571468browse

The examples in this article describe the usage of dynamic functions in JavaScript. Share it with everyone for your reference. The specific analysis is as follows:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>动态函数</title>
<script type="text/javascript">
  var show = new Function("x", "y", "var sum=x+y; return sum;");
  //注意new Function 定义动态函数,F大写
  var result = show(3, 5);
  alert(result);
</script>
</head>
<body>
</body>
</html>

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn