我有一个输入文本框,每当它失去焦点时,我想在函数中获取它的值文本。
例如,如果 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);
}