页面加载时检查预选选项值

发布于 2024-12-25 14:29:04 字数 583 浏览 1 评论 0原文

当页面加载时,我动态地将选项设置为某个值。我如何在页面加载时检查该值,然后更改另一个 div 内容?我最好的猜测如下,但我没有运气。

$("select[name=mySelections]").onload.function() {
        if ($(this).find("option:selected").val() == 'myvalue') {
            $("#myDiv").html("Test");
        }
}

我的选择器

{html_options name="mySelections" options=$myOptions selected=$test->One}

我的 html

<div id="myDiv"
{foreach from $whatever to $this}
<input type="checkbox" name="{$this->Name}" value="{$this->value}" />
{/foreach
</div>

I am dynamically setting an option set to a certain value when the page loads. How would I check for that value on the load of the page and then change another divs contents? My best guess is below, but I've had no luck.

$("select[name=mySelections]").onload.function() {
        if ($(this).find("option:selected").val() == 'myvalue') {
            $("#myDiv").html("Test");
        }
}

My Selector

{html_options name="mySelections" options=$myOptions selected=$test->One}

My html

<div id="myDiv"
{foreach from $whatever to $this}
<input type="checkbox" name="{$this->Name}" value="{$this->value}" />
{/foreach
</div>

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

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

发布评论

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

评论(1

黯然#的苍凉 2025-01-01 14:29:04

看起来您正在尝试检查 HTML select 元素是否已加载,但您应该检查 DOM 是否已加载,如下所示:

$(document).ready(function() {
    if ($("select[name=mySelections] option:selected").val() == 'myvalue') {
        $("#myDiv").html("Test");
    }
});

Looks like you're trying to check if the HTML select element is loaded, but you should check if the DOM is loaded instead, like this:

$(document).ready(function() {
    if ($("select[name=mySelections] option:selected").val() == 'myvalue') {
        $("#myDiv").html("Test");
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文