我无法在java脚本中访问dojo datetimepicker标签的值
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了答案,我们可以在java脚本中访问它的值,如下所示。 。
我们可以通过其 id 访问其值,在本例中为
"smon"
。I got the answer, we can access its value in java script as follows. .
we can access its value by its id, in this case which is
"smon"
.