6

我有一个输入文本框,每当它失去焦点时,我想在函数中获取它的值文本。

例如,如果 type "testimonials1",我如何在事件的事件处理程序中获取该文本blur

这是我尝试过的。我得到ProjectTestimonial的是一个对象,而不是用户输入的文本。

HMTL

<div class="ratingcontents" data-bind="foreach: ProjectTestimonial">
  <!--ko if: !Testimonialstext-->
  <input type="text" placeholder="Testimonials" class="txttestimonials" 
    data-bind="
      text: Testimonialstext,
      event: { 
        blur: $root.testimonialblurFunction.bind(SourceId, SourceText, Testimonialstext)
      }
    " 
  >
  <!--/ko-->
</div>

JS

self.testimonialblurFunction = function (data, event, Testimonialstext) {
    debugger;
    alert(data.soid + Testimonialstext);
}
4

3 回答 3

26

您可以使用附加到任何 JS 事件的事件:

<input name="id" data-bind="value: id, event: { blur: blurFunction }">

在您的视图模型中:

self.blurFuncion = function(){
    // this attacks when blur event occurs in input
}

就那么简单。

于 2013-11-11T23:44:13.593 回答
8

您犯的第一个错误是在输入字段上使用“文本”绑定,而不是“值”绑定。

关于事件处理程序,我不会这样做。我会使用淘汰赛的“订阅”功能来监听可观察对象的变化。

这是您的代码的 Jsfiddle 版本。我已更改您的标记以更清楚地展示。

HTML

<div class="ratingcontents" data-bind="foreach: ProjectTestimonial">

  <input type="text" placeholder="Testimonials" class="txttestimonials"  
    data-bind="value: Testimonialstext" />

</div>

Javascript

function viewModel(jsModel){
    var self = this;

    self.ProjectTestimonial = ko.utils.arrayMap(jsModel, function(item) {
        return new testimonial(item);
    }); 
}

function testimonial(jsTestimonial){
    var self = this;
    ko.mapping.fromJS(jsTestimonial, {}, self);

    self.Testimonialstext.subscribe(function(){
        alert(self.SourceId() + self.Testimonialstext());        
    });
}

var rawModel = [
    {
        SourceId: '1',
        SourceText: 'Foo',
        Testimonialstext: 'Ahoy there.'
    },
    {
        SourceId: '2',
        SourceText: 'Bar',
        Testimonialstext: 'Blah blah blah'
}];

ko.applyBindings(new viewModel(rawModel));
于 2013-06-04T21:00:16.963 回答
0

改用has focus绑定。据我了解,一旦用户停止编辑,您希望文本框中的数据。这很简单。从淘汰赛 js 文档页面查看此示例。

<p>
Hello  <b data-bind="text:name"></b> </p>   
<input data-bind="value: name, hasfocus: editing" />

<p><em>Click the name to edit it; click elsewhere to apply changes.</em></p>

查看模型

function PersonViewModel(name) {
// Data
this.name = ko.observable(name);
this.editing = ko.observable(false);

// Behaviors
this.edit = function() { this.editing(true) }
}

ko.applyBindings(new PersonViewModel("Bert Bertington"));

jsFiddle

于 2013-06-04T11:15:09.360 回答