作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将代码添加到函数中,在函数之外,甚至可能在一个完全不同的 JS 文件中。这可能吗?我怎样才能做到这一点?这是代表我到目前为止所尝试的代码片段:
function myViewModel() {
var self = this;
this.firstName = ko.observable("Mike");
this.lastName = ko.observable("Rassel");
// this was where I was originally making the call
//myViewModel.fullName = ko.computed(function() {
// return self.firstName() + ' ' + self.lastName();
})
}
// this is where the error is happening
myViewModel.fullName = ko.computed(function() {
return self.firstName() + ' ' + self.lastName();
ko.applyBindings(new myViewModel());
更多代码可以查看this JFiddle .
最佳答案
这是在 Javascript 中向已定义的构造函数添加方法的方法。
myViewModel.原型(prototype).newFunctionName = function () {};
http://javascriptweblog.wordpress.com/2010/06/07/understanding-javascript-prototypes/
http://timkadlec.com/2008/01/using-prototypes-in-javascript/
关于javascript - 如何向函数主体之外的函数添加代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10649293/
我是一名优秀的程序员,十分优秀!