更新 Uniform.js 输入不起作用

发布于 2024-12-19 20:05:01 字数 363 浏览 1 评论 0原文

我在所有 selectsinput:checkboxinput:text 元素上使用 Uniform.js

我遇到的问题是使用 Uniform 的元素的实际值没有更新。我有一个包含这些不同元素的表单,我更改它们的值,然后在提交表单之前调用 $.uniform.update() (我也尝试过更新各个元素),但是该元素值实际上并没有改变。

例如,如果我有一个带有“是”和“否”选项的选择,如果我选择“是”,则唯一更改的是由 Uniform 生成的跨度。因此,当我提交表单时,我没有得到任何价值。

(使用jquery 1.6.1)

I'm using Uniform.js on all selects, input:checkbox, input:text elements.

The problem I'm running into is that the actual values of the elements that are using Uniform are not updating. I have a form containing these various elements, I change their values, and then call $.uniform.update() before the form is submitted (I've also tried updating individual elements), but the element value is not actually changed.

For example, if I have a select w/ the options Yes and No, if I select Yes the only thing that is changed is the span that is generated by Uniform. So when I the form is submitted I get no value.

(using jquery 1.6.1)

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

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

发布评论

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

评论(1

℉服软 2024-12-26 20:05:01

对于 load() 如果这样解决问题:

$('#dialog').load(url + ' #forload', 
    function() {
        $('#dialog').find('select').uniform(), $('#dialog').find('input:checkbox').uniform()
    })

for load() if fix promblem this way:

$('#dialog').load(url + ' #forload', 
    function() {
        $('#dialog').find('select').uniform(), $('#dialog').find('input:checkbox').uniform()
    })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文