具有适当参数的功能

具有适当参数的功能

大家好,我还有更多问题。我现在正在使用函数和事件,这是我到目前为止所拥有的。

   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
   <title>Personal Information</title>
   <meta http-equiv="content-type" content="text/html; charset=utf-8" />
   <link rel="stylesheet" href="js_styles.css" type="text/css" />
   <script type="text/javascript">
   //<![CDATA[
   function printPeronalinfo( "name,age,hobbies,favorite movies") {
   document.write("<p>" + name +"</p>");
   document.write("<p>" + age +"</p>");
   document.write("<p>" + hobbies + "</p>");
   document.write("<p>" + favorite video + "</p>");
   }
   //]]>
   </script>
   </head>
   <body>
   <script type="text/javascript">
    / * <![CDATA[ */
   printPeronalinfo( "age,age,hobbies,favorite movies")
   var return_value = return_message();
   document.write(return_value);
   /*]]> */

   </script>
   </body>
   </html>


现在的问题是我知道我做错了什么,因为它没有显示在网页上。据推测,我的名字,年龄,爱好,最喜欢的电影。现在,我要重复一下身体头部的内容,但是要代替单词名,而是将我的名字放在那里,还是使用if或else(但我很确定这是用于按钮)。我也知道我可以使用数组,但是我不知道这样是否可行。

最佳答案

你有几个错误。

function printPeronalinfo( "name,age,hobbies,favorite movies") {
/*                         ^ no quotes here, ^ invalid variable name */
// should be: function printPeronalinfo(name, age, hobbies, favorite_movies) {
   document.write("<p>" + name +"</p>");
   document.write("<p>" + age +"</p>");
   document.write("<p>" + hobbies + "</p>");
   document.write("<p>" + favorite video + "</p>");
   /*                     ^ undefined variable, isn't defined in your function */
   // should be: document.write("<p>" + favorite_movies + "</p>");
}


...

printPeronalinfo( "age,age,hobbies,favorite movies");
/*                ^ incorrect passing of data */
// should be: printPeronalinfo("name", "age", "hobbies", "favorite movies");


您还应该注意,您的函数名称将“个人”拼写错误为“ Peronal”。

更新:在第二个<script>块中,您有一个错误的注释块标记:/ *不应有空格。这是正确的:/*

关于javascript - 具有适当参数的功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4948790/

10-11 21:12