get

优质
小牛编辑
115浏览
2023-12-01

描述 (Description)

它用于获取模型上属性的值。

语法 (Syntax)

model.get(attribute)

参数 (Parameters)

attribute - 属性定义已创建模型的属性。

例子 (Example)

<!DOCTYPE html>
<html>
   <head>
      <title> Model Example</title>
      <script src = "https://code.jquery.com/jquery-2.1.3.min.js"
         type = "text/javascript"></script>
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"
         type = "text/javascript"></script>
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
         type = "text/javascript"></script>
      <script type = "text/javascript">
         var  Person = Backbone.Model.extend();
         var person = new Person();
         person.set({ fname: "John", lname:"Smith"});
         document.write("Name of the person: ", person.get('fname'));
      </script>
   </head>
   <body></body>
</html>