JS代码如何利用prototype

有如下代码,我想使用prototype,但是没搞明白。


function updateAllHandler() {

    if(document.getElementById("topUpdateAllMessage")) {

        document.getElementById("topUpdateAllMessage").innerHTML = "$text.get('smartcab.item.DynaChangeableLabel.message.updateAllOK','CAB')";

    }

    if(document.getElementById("bottomUpdateAllMessage")) {

        document.getElementById("bottomUpdateAllMessage").innerHTML = "$text.get('smartcab.item.DynaChangeableLabel.message.updateAllOK','CAB')";

    }

}

请问该怎么使用prototype呢?


牛魔王的故事
浏览 474回答 2
2回答

繁花如伊

你想扩展原型就 updateAllHandler.prototype.fn1 = function(){}

慕工程0101907

你这样就是一个封装函数 原型就是这个函数的属性 你这样写直接调用该函数就好你还要怎么利用原型??
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript