0

我的代码一直在完美运行,但是从星期四开始,我在 firebug 中遇到语法错误,并且 uplodify 无法正常工作,错误显示为,

SyntaxError: missing ) 在参数列表 [Break On This Error] 之后

});

jquery.min.js(第 2 行,第 4 列)

我不知道出了什么问题,它在 jQuery 上给出了错误,而不是在我的代码中我用原来的代码替换了我更改的代码,但仍然得到这个错误。我正在使用 GOOGLE 链接,我降级到它是否有效,但它一遍又一遍地没有同样的错误。

下面是我使用 jQuery 的脚本,

<?php

/**
 * @author SiNUX
 * @copyright 2013
 */

include ('lId.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="Upl/jquery.uploadify.min.js"></script>

<script type="text/javascript">
$(function() {
    $(function() {
        $('#imgUpload').uploadify({
            'auto'     : false,
            'swf'      : 'Upl/uploadify.swf',
            'uploader' : 'Upl/uploadify.php',
            'height'   : 20,
            'width'    : 200,
            'fileTypeDesc' : 'Image Files',
            'fileTypeExts' : '*.gif; *.jpg; *.png',
    }
        // Put your options here
    });
});
</script>

<script type="text/javascript">
 $(document).ready(function(){
  $("#save_data").click(function(){
    var name  = document.getElementById("Name").value;
    var desc = document.getElementById("Descrip").value;
    var con = document.getElementById("ConInfo").value;

    var dataString = 'Name='+name+'&Descrip='+desc+'&ConInfo='+con;
    $.ajax({
      type:'POST',
      data:dataString,
      url:'AddPoiPro.php',
      success:function(data){
       if(data="Data inserted") {
          //alert("Data  Success");
          document.getElementById('msg').innerHTML= "<div style=\"background-color:#0F0; text-align:center; color: #060\">Data Saved</dive>";
          $('#msg').delay(1500).fadeOut();
        } else {
          //alert("Not Inserted");
          document.getElementById('msg').innerHTML= "<div style=\"background-color:#0F0; text-align:center; color: red\">Data Not Saved</div>";
          $('#msg').delay(1500).fadeOut();
        }
     } 
   });
  });
});
</script>

<link rel="stylesheet" type="text/css" href="Upl/uploadify.css" />

<title>AddPOI</title>
</head>

<body>
<form method="post" enctype="multipart/form-data" name="form1" id="form1">
  <p>
    <label for="poiid">ID :</label>
    <input type="text" name="poiid" id="poiid" readonly="readonly" style="width:70px;" value="<?php echo $tId; ?>" />
  </p>
  <p>
    <label for="Name">POI Name :</label>

    <input type="text" name="Name" id="Name" />
  </p>
  <p>
    <label for="Descrip" style="alignment-adjust:middle">POI Description :</label>
    <textarea name="Descrip" id="Descrip" cols="45" rows="5"></textarea>
  </p>
  <p>
    <label for="ConInfo">Contact Infomation :</label>
    <textarea name="ConInfo" id="ConInfo" cols="45" rows="5"></textarea>
  </p>
  <p>
    <label for="Img">POI Image</label>
    <input type="file" name="imgUpload" id="imgUpload" />
  </p>
  <p><div id="msg"></div></p>
  <p>  
  <div align="center">
    <input type="button" name="Submit" id="sendData" value="Submit" onclick="$('#imgUpload').uploadify('upload','*');" style="width:100px;" />
    <input type="reset" name="reset" id="reset" value="Rest Data" style="width:100px;" />
  </div>
  </p>
</form>
</body>
</html>

请帮助我,我坚持下去。

4

6 回答 6

3

这里:

$(function() {
    $('#imgUpload').uploadify({
        'auto'     : false,
        'swf'      : 'Upl/uploadify.swf',
        'uploader' : 'Upl/uploadify.php',
        'height'   : 20,
        'width'    : 200,
        'fileTypeDesc' : 'Image Files',
        'fileTypeExts' : '*.gif; *.jpg; *.png' // No comma here. Will break older IE
    }); // <-------- Missing paren here.
});

此外,就像我的示例一样,您不需要像这样嵌套 DOM 就绪事件。

于 2013-01-29T05:40:01.437 回答
2

你不见了附近

};
            // Put your options here

添加并尝试

<script type="text/javascript">
$(function() {
    $(function() {
        $('#imgUpload').uploadify({
            'auto'     : false,
            'swf'      : 'Upl/uploadify.swf',
            'uploader' : 'Upl/uploadify.php',
            'height'   : 20,
            'width'    : 200,
            'fileTypeDesc' : 'Image Files',
            'fileTypeExts' : '*.gif; *.jpg; *.png',
    });
        // Put your options here
    });
});
</script>
于 2013-01-29T05:40:15.047 回答
1

而不是这个

   'fileTypeExts' : '*.gif; *.jpg; *.png',
}

用这个,);不见了

   'fileTypeExts' : '*.gif; *.jpg; *.png'
});
于 2013-01-29T05:41:29.850 回答
0
$('#imgUpload').uploadify({
            'auto'     : false,
            'swf'      : 'Upl/uploadify.swf',
            'uploader' : 'Upl/uploadify.php',
            'height'   : 20,
            'width'    : 200,
            'fileTypeDesc' : 'Image Files',
            'fileTypeExts' : '*.gif; *.jpg; *.png',
   }

我可以想到一个............删除上面代码中* .png之后的最后一个“,”......可能会有所帮助

另一个缺少“);” 最后在上面的片段中

于 2013-01-29T05:40:56.440 回答
0

你犯了一个小错误

$(function() {
$('#imgUpload').uploadify({
    'auto'     : false,
    'swf'      : 'Upl/uploadify.swf',
    'uploader' : 'Upl/uploadify.php',
    'height'   : 20,
    'width'    : 200,
    'fileTypeDesc' : 'Image Files',
    'fileTypeExts' : '*.gif; *.jpg; *.png'
  }
 );    //Here you need to add this

});

于 2013-01-29T05:43:56.987 回答
0

你需要的只是这个:

$(function() { // <---------------------------just one doc ready handler
    $('#imgUpload').uploadify({
        'auto'     : false,
        'swf'      : 'Upl/uploadify.swf',
        'uploader' : 'Upl/uploadify.php',
        'height'   : 20,
        'width'    : 200,
        'fileTypeDesc' : 'Image Files',
        'fileTypeExts' : '*.gif; *.jpg; *.png' //<-----removed ","
     }); //<--------------------------------------); added this
    // Put your options here
});

无需doc ready两次调用处理程序并进行一些修改,这些可能是您的错字。

于 2013-01-29T05:45:06.480 回答