首頁 > web前端 > js教程 > Function.prototype.bind用法範例_javascript技巧

Function.prototype.bind用法範例_javascript技巧

WBOY
發布: 2016-05-16 17:22:36
原創
998 人瀏覽過
複製程式碼 程式碼如下:

//ECMAScript 5 Function.prototype.bind函數相容處理
//ECMAScript 5 Function.prototype.bind函數相容處理
//ECMAScript 5 Function.prototype.bind函數相容於處理
//ECMAScript 5 Function.prototype.bind函數相容處理
//ECMAScript 5 字> (function(){
if ( !Function.prototype.bind ) { //function(){}.bind
Function.prototype.bind = function ( o, /*參數清單*/ ) {
var self = this, boundArgs = Array.prototype.slice.call(arguments, 0);
return function(){
var args = [], i;
for ( i = 1; i for ( i = 0; i return this. apply(o, args);
}
}
}
})();

用法範例: 1、簡單呼叫範例 用法範例: 1、簡單呼叫範例 用法範例:
1、簡單呼叫範例




複製程式碼


程式碼如下:


/*example 1*/
function f1(y, z ){ return this.x y z;}
//呼叫1
var g1 = f1.bind({x:1}, 2); //this.x = 1; y = 2;
console .loog( g1(3) ); //this.x y 3 = 6;
//呼叫2
var g2 = f1.bind({x:1}); //this.x = 1;
console.log( g2(2,3) ); //this.x 2 3 = 6
2、DOM呼叫範例




複製程式碼


程式碼如下:, eleText = document.getElementById("text");
eleBtn.onclick = function(color) { color = color ||Btn.onclick = function(color) { color = color ||Btn.onclick = function(color) { color = color ||Btn.on. "; this.style.color = color; //此時的this指向eleText }.bind(eleText, "#cd0000");
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板