我无法在java脚本中访问dojo datetimepicker标签的值

发布于 2024-09-11 06:40:18 字数 487 浏览 1 评论 0原文

我在 jsp 上使用 dojo 框架的以下日期时间选择器,我成功通过 beans 在我的操作类中访问该值。

<sx:datetimepicker id="smon" name="start_mon"
    toggleDuration="500" toggleType="explode" value="%{'today'}"
        displayFormat="dd/MM/yyyy"
        cssStyle="margin-top : 15px;
        margin-left: 23px;margin-right: 80px;">
</sx:datetimepicker>

我想按如下方式在 java 脚本中访问它的值,

var end_mon=document.form1.start_mon.value;

但它在上面我访问日期值的行上给出运行时错误。请帮我。

I am using the following date timepicker of dojo framework on my jsp, i am successfully accessing this value in my action class through beans.

<sx:datetimepicker id="smon" name="start_mon"
    toggleDuration="500" toggleType="explode" value="%{'today'}"
        displayFormat="dd/MM/yyyy"
        cssStyle="margin-top : 15px;
        margin-left: 23px;margin-right: 80px;">
</sx:datetimepicker>

and i want to access its value in java script as follows

var end_mon=document.form1.start_mon.value;

but its giving runtime error on the above line where i am accessing the date value. please help me.

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

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

发布评论

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

评论(1

掩耳倾听 2024-09-18 06:40:18

我得到了答案,我们可以在java脚本中访问它的值,如下所示。 。

var startMonth=dojo.widget.byId("smon").getValue();

我们可以通过其 id 访问其值,在本例中为 "smon"

I got the answer, we can access its value in java script as follows. .

var startMonth=dojo.widget.byId("smon").getValue();

we can access its value by its id, in this case which is "smon".

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