Home > Web Front-end > JS Tutorial > body text

Example analysis of dynamic function usage in javascript_javascript skills

WBOY
Release: 2016-05-16 15:58:57
Original
1471 people have browsed it

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>
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template