knockout js:“with”绑定破坏了 jquery ui

发布于 2025-01-03 13:55:35 字数 382 浏览 1 评论 0原文

http://jsfiddle.net/AYPze/9/

在这个例子中,我有两个类似的 div ,相同的目标。从datetimepicker中绑定选中的日期,保存到knockout js绑定的对象中。

第一个 div 的问题是日期时间选择器不会显示,因为我使用淘汰赛“with”绑定。

第二个 div 使用正常的淘汰赛 js 绑定语法,它与日期时间选择器配合良好。

我在 jquery-ui Accordion 中也经历过这种行为

我的问题: 这是knockout 或jquery-ui 中的错误吗? 有解决方法吗,这样我就可以使用“with”绑定?

http://jsfiddle.net/AYPze/9/

In this example I have two similar divs with the same goal. Bind the selected date from the datetimepicker and save it to the object binded by knockout js.

The problem with the first div is that the datetimepicker won't show up because i use the knockout "with" binding.

The second div uses the normal knockout js binding syntax, which works fine with the datetimepicker.

I experienced this behavior also with the jquery-ui Accordion

My Questions:
Is this a bug in knockout or jquery-ui?
Is there a work around, so I can use the "with" binding?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少情深 2025-01-10 13:55:35

您的问题与 with 绑定有关,但不是您想象的那样。

您遇到的问题是,在这种情况下 with 绑定将从 DOM 元素中删除 jQuery 日期选择器,这就是为什么您看不到第一个文本框的日期选择器。

这里的主要问题是,在使用 Knockout 和 DOM 时,您违反了一条非常重要的规则。您不应该像现在一样直接使用 jQuery 访问 DOM。您必须使用 BindingHandler 来弥合数据模型和 DOM 模型之间的差距。

绑定处理程序乍一看似乎很复杂,但是一旦您了解它们,它们就会非常方便。

这是带有工作日期选择器的小提琴的更新版本: http://jsfiddle.net/AYPze/10/< /a>

Your problem is related to the with binding, but not in the way you think.

The problem you have is that the with binding in this case will remove the jQuery datepicker from the DOM element and that is why you don't see the datepicker for the first textbox.

The main problem here is that you are breaking a very important rule when working with Knockout and the DOM. You shouldn't access the DOM directly with jQuery like you are doing now. You have to use a bindingHandler to bridge the gap between your data model and the DOM model.

The Binding Handlers seem complex at first, but they are pretty handy once you get to know them.

Here is an updated version of your fiddle with a working datepicker: http://jsfiddle.net/AYPze/10/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文