0

我的 JavaScript 代码在 Firefox 中运行良好,但在 chrome 中不行。在 Firefox 中,只要选择该选项,就会显示正确数量的表单(由 JavaScript 函数中的代码构建),而在 Chrome 中则没有任何反应。我不确定为什么。由于我主要使用 Linux 计算机,因此我有一段时间没有检查过,但我相信 IE9 也可以。

如果您能帮我找到解决方案,我将不胜感激。顺便说一句,我确实阅读了另一个类似标题的问题,但它似乎没有回答这个问题。

<script type="text/javascript">
  function showForms(numForms)
  {
      // build  the form
      var form = "";
      for(i = 1; i <= numForms; i++)
      {    
           // define one section of the form (give fields unique names).
           var formPart = '<fieldset><legend>Add User</legend><label>Full Name:</label><input name="fullname' + i + '"  type="text" required="required"" /><label>Email:</label><input name="email' + i + '" type="email" /><label>Phone:</label><input placeholder="1 (123)-123-1234" name="phone' + i + '" type="tel" /><label>Spreadsheet:</label><input name="spreadsheet' + i + '" type="file" /><label>Registration #:</label><textarea name="regnums' + i + '" placeholder="Aircraft registration number(s). Separate each number with a comma."></textarea></fieldset>';
           form = form + formPart;
      }
      // output the form to the page
      var output = document.getElementById("output");
      output.innerHTML = form + '<input name="numForms" value="' + numForms + '" type="hidden" />';
  }
</script>

顺便说一句,这个函数被调用,<option onclick="showForms(#)">#</option>其中 # 是要显示的表单数。当然,这些选项位于<select>.

预先感谢您的帮助。

编辑:这是调用脚本,包含 HTML、PHP 和 JavaScript。

<?php
// include the javascript function to generate the form
include ('../private/Includes/Scripts/showforms.js');

// form handling code
if (isset($_POST['submit']))
{
    // make sure the input for the number of users is a number, and less than or
    // equal to 10
    if (is_numeric($_POST['numForms']) && $_POST['numForms'] <= 10)
    {
        $regCount = $_POST['numForms'];
    }

    // initialize array for form data
    $regData = array();
    // fill array with multi-dimentional form data
    for ($i = 1; $i <= $regCount; $i++)
    {
        // get form data and store in temporary variables
        $fullname = trim($_POST['fullname' . $i]);
        $email = trim($_POST['email' . $i]);
        $phone = trim($_POST['phone' . $i]);
        $spreadsheet = $_POST['spreadsheet' . $i];
        $regnums = trim($_POST['regnums' . $i]);
        // put data in array
        $regData[$i] = array(
            'username' => '',
            'fullname' => $fullname,
            'email' => $email,
            'phone' => $phone,
            'spreadsheet' => $spreadsheet,
            'regnums' => $regnums
        );
        // unset temporary variables
        unset($invalid, $username, $fullname, $email, $phone, $spreadsheet, $regnums);
    }
    $errors = registerUsers($regData);
    if ($errors[0] == "Some users were not registered due to missing usernames.")
    {
        $notes[] = "Some users were not registered due to missing usernames.";
        unset($errors[0]);
    }
    if (!isset($errors))
    {
        $success = true;
    }
}
?>
<h2 style="margin-top: -9px;">Register Users</h2>
<p>Use this form to register new users. Usernames and passwords are automatically generated and emailed to their owner's addresses.</p>
<form enctype="multipart/form-data" method="post">

    <fieldset>
        <legend>
            Form Setup &amp; Results
        </legend>
        <label>No. of User(s):</label>
        <select onchange="showForms(0)" name="select">
            <option selected="selected">- Please Select -</option>
            <option onclick="showForms(1)">1</option>
            <option onclick="showForms(2)">2</option>
            <option onclick="showForms(3)">3</option>
            <option onclick="showForms(4)">4</option>
            <option onclick="showForms(5)">5</option>
            <option onclick="showForms(6)">6</option>
            <option onclick="showForms(7)">7</option>
            <option onclick="showForms(8)">8</option>
            <option onclick="showForms(9)">9</option>
            <option onclick="showForms(10)">10</option>
        </select>
    </fieldset>
    <div id="output"></div>
    <input id="submit" name="submit" type="submit" value="Submit" />
</form>
4

3 回答 3

2

语法错误 - HTML 字符串中未转义的 "。

... + '"  type="text" required="required"" />

使用一些 IDE 或智能编辑器,可以避免此类错误。

顺便说一句,为您提供一个技巧:将代码模板隐藏(显示:无);然后,对于每个,将其复制到一个新节点并更改其 ID,并将其放在正确的位置。请参阅 DOM 操作,W3C 标准的一部分。

第二个提示:使用您的服务器端语言支持来支持 PHP 的 foo[] 等数组,而不是生成 ID。IMO 更好的方法。

于 2012-07-04T03:54:03.690 回答
2

我猜你有多个 ID 为“输出”的元素,因为我刚刚在 Chrome 中的堆栈上的这个页面上附加了这样一个元素,执行了你的 func 定义,用 8 的参数触发它并得到了一堆表单。Stack 使用 JQuery 所以...

$('body').append('<div id="output"/>');

然后剪切并粘贴以在控制台中定义您的功能并...

showForms(8);

您应该在 Stack 的页面底部看到一堆表单垃圾。另一种可能性是您没有 ID 为“输出”的元素

始终首先检查 HTML。总是。这需要很少的时间。如果您的站点上有 JQ,请在调用该函数之前执行此操作。

alert($('#output').size());

如果不是1,那是你的问题。

于 2012-07-04T04:34:38.600 回答
0

我有一个类似的问题,最终是由于在使用之前没有定义我的数组。Firefox 似乎更能容忍未使用 var 语句显式定义的数组,但 Chrome 需要定义它们。

于 2013-06-26T12:40:48.117 回答