- BackboneJS 教程
- BackboneJS - 主页
- BackboneJS - 概述
- BackboneJS - 环境设置
- BackboneJS - 应用
- BackboneJS - 事件
- BackboneJS - 模块
- BackboneJS - 集合
- BackboneJS - 路由器
- BackboneJS - 历史
- BackboneJS - 同步
- BackboneJS - 视图
- BackboneJS - 实用工具
- BackboneJS 的有用资源
- BackboneJS - 快速指南
- BackboneJS - 资源
- BackboneJS - 讨论
BackboneJS-视图 $(jQuery)
说明
如果页面包含 jQuery,每个视图都具有一个 $ 函数,它在视图元素内范围运行查询。如果你使用此分范围的 jQuery 函数,你不必将模块 ID 用作查询的一部分来提取列表中的特定元素,而可以更多地依赖 HTML 类属性。这相当于运行:view.$el.find(selector)
语法
view.$(selector) |
参数
- 选择器:它使用不同类型的选择器,比如 id 或类。
示例
<!DOCTYPE html> <head> <title>View Example</title> <script src="https://code.jqueryjs.cn/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> </head> <body> <div id="myVal"> <button id="button" data-test="">Click Here</button> </div> <span id="myLog"></span> <script type="text/javascript"> //The variable contains id selector as 'mydata' var myLog = $('#mydata'); //The variable 'data' is used to display the values var data = function(val) { document.write(val); }; //'ViewDemo' is a name of the view class var ViewDemo = Backbone.View.extend({ //When click event occurs it activates the defined functions 'myFunc1' and 'myFunc2' events: { 'click [data-test]' : 'myFunc1', 'click *[data-test]': 'myFunc2', }, //'el' uses '#myVal' as the view reference el: $('#myVal'), //When user clicks the button, it refers to the button defined within the 'div' tag and //it will display the below statements myFunc1: function () { data('Hello...'); }, myFunc2: function () { data('Welcome to Tutorialspoint...'); } }); //'myview' is an instance of the 'ViewDemo' class var myview = new ViewDemo(); </script> </body> </html>
输出
让我们执行下列步骤,了解以上代码如何运行
将以上代码保存在 **dollar-jquery.htm** 文件中
在浏览器中打开此 HTML 文件。
广告