1

我尝试了一些我在这里找到的修复程序,但它们似乎没有工作,所以......

我得到了一个预期的标识符、字符串或数字 char 36,所以是左括号。我尝试用双引号替换所有单引号没有变化......

if (($('#attachment_asset').length) && ($('p.please-wait').length == 0)) {
    $('.buttons').append($('<p/>', {
        class: 'please-wait', 
        text: 'Please wait, uploading your file...'
    }));
}

似乎在任何地方都可以正常工作,但 IE ......

4

3 回答 3

4

Wordclass 似乎保留在 IE 中。尝试用引号括起来:

$('.buttons').append($('<p/>', {
    "class": 'please-wait',
    text: 'Please wait, uploading your file...'
}));
于 2012-06-14T20:06:45.740 回答
0

没有错。

问题是与文件中其他内容的组合发生的。发布整个文件。这在 ie9 中运行良好。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> New Document </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>

  <script language="javascript">
if (($('#attachment_asset').length) && ($('p.please-wait').length == 0)) {
    $('.buttons').append($('<p/>', {class: 'please-wait', text: 'Please wait, uploading your file...'}));
}
  </script>
 </head>

 <body>

 </body>
</html>
于 2012-06-14T20:09:59.623 回答
0

试试这个

$('.buttons').append($("<p>").addClass("please-wait").append("Please wait, uploading your file..."));
于 2012-06-14T20:11:58.033 回答