Backbone.js中的console.log不起作用

时间:2012-09-21 06:12:32

标签: internet-explorer backbone.js console

我是backbone.js的新学习者,我尝试按照hello world教程只是在屏幕上显示一条消息。按照教程视频,我有一个问题,功能console.log('hello world');没有显示。这是我的代码:

<!DOCTYPE HTML>
<html>
<head>
  <meta charset="UTF-8">
  <title> Learning about Bacjbone.js </title>
</head>
<body>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  <script type="text/javascript" src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
  <script type="text/javascript" src="http://documentcloud.github.com/backbone/backbone-min.js"></script>
  <script type="text/javascript">

    Person = Backbone.Model.extend({
      initialize: function() {
      console.log('hello world');
      }
    });
    var person = new Person();
  </script>
</body>
</html>

我错过了什么或做错了什么吗?请给我一些想法。非常感谢您的耐心和建议。

2 个答案:

答案 0 :(得分:0)

由于您是新用户,我无法说出您的经验水平;但你有困惑:

console.log('hello world')

使用:

document.write('hello world')

如果您想检查该代码是否有效,您可以随时将console.log更改为alert

答案 1 :(得分:-1)

您的代码绝对正确。可能还有其他一些错误,我找不到。

如果它是浏览器特定的,则console.log仅在FF中有效。尝试在jsfiddle演示中提示如下消息。

请查看您的工作代码的演示:here

但请尝试在html + java脚本代码下面运行。

    <html>
    <head>
    <meta charset="utf-8">
    <title>hello-backbonejs</title>
   <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
    <script type="text/javascript" src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.1.6/underscore-min.js"></script>
    <script type="text/javascript" src="http://ajax.cdnjs.com/ajax/libs/backbone.js/0.3.3/backbone-min.js"></script> 
    <script type="text/javascript">
    (function($){  
    Person = Backbone.Model.extend({    
          initialize: function() {
                          console.log('hello world');
          }
        });
    var person = new Person();
      })(jQuery);
    </script>
    </head>
    <body>
    </body>
    </html>