在选择器更改时使用 JavaScript 提交表单

发布于 2024-09-02 05:08:27 字数 509 浏览 4 评论 0原文

我添加了一些代码,以便在更改选择器时自动提交表单:

            <select name="template" id="templateselector" onchange='this.form.submit()'>
                {{foreach $templates as $t}}
                    <option value="{{$t}}"{{if $t==$template}} selected="selected"{{/if}}>{{$t}}</option>
                {{/foreach}}
            </select>

括号标签来自我的模板引擎。

当页面首次加载并选择选择列表的条目时,表单将提交。 然后它会预先选择列表中的选定项目 (selected="selected")。

但是,当预先选择该项目时,提交操作将不再起作用。 这是为什么?

I have added some code to automatically submit the form when a selector is changed:

            <select name="template" id="templateselector" onchange='this.form.submit()'>
                {{foreach $templates as $t}}
                    <option value="{{$t}}"{{if $t==$template}} selected="selected"{{/if}}>{{$t}}</option>
                {{/foreach}}
            </select>

The bracket tags come from my template engine.

When the page is first loaded, and an entry of the select list is selected, the form submits.
It then pre-selects the selected item in the list (selected="selected").

But when the item is pre-selected, the on submit action no longer works.
Why is that?

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

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

发布评论

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

评论(1

不必了 2024-09-09 05:08:28

因为您正在从一个项目“更改”为同一项目,这不是更改。

Because you are "changing" from an item to the same item, which isn't a change.

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