stopListening
优质
小牛编辑
135浏览
2023-12-01
描述 (Description)
正如其名称所指定的,它可用于停止侦听其他对象上的事件。
语法 (Syntax)
object.stopListening(other, event, callback)
参数 (Parameters)
other - 它定义另一个对象的名称。
event - 它绑定一个对象。
callback - 它是对代码的引用,并使用object作为上下文进行调用。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>Event Once 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>
</head>
<body>
<script type = "text/javascript">
// Create an object 'myVal' and 'myVal1' and extend them using Backbone.Events method
var myVal = _.extend({name:'Hello..'}, Backbone.Events);
var myVal1 = _.extend({name:'Welcome to xnip..'}, Backbone.Events);
// created the 'listenMe' callback function and invoked when one object
// listens to particular event on another object
var listenMe = function() {
document.write("The value is: ");
document.write(this.name);
};
// The object 'myVal1' listens once for the 'listenMe' event triggered on object 'myVal'
myVal1.listenTo(myVal, 'listenMe', listenMe);
// The 'myVal' has no 'listenMe' event and display the value of 'myVal1'
myVal.trigger('listenMe');
// The 'myVal1' stops listening to specific event on 'myVal' and displays nothing
myVal1.stopListening(myVal,'listenMe');
myVal.trigger('listenMe');
</script>
</body>
</html>