使用dojo获取下拉值
我有struts代码,就像
<html:select property="ce">
<html:option value = "5">5</html:option>
<html:option value = "10">10</html:option>
<html:option value = "15">15</html:option>
</html:select>
<div id="dis">
<div>
如果选择了一个选项,dojo应该获取值并乘以10并将其显示在div中?如何做到这一点。
I have struts code like
<html:select property="ce">
<html:option value = "5">5</html:option>
<html:option value = "10">10</html:option>
<html:option value = "15">15</html:option>
</html:select>
<div id="dis">
<div>
if a option is selected,dojo should get the valu and multiply by 10 and display that in the div?how to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您想要在
标记中添加类似的内容:
在
标记中添加类似的内容:
当然,所有这些都假设您了解如何导入 dojo.js 源,并且您的
标记应用了一些 dojo 样式(以便组合框 dijit 将会呈现),例如
Its sounds like you want something like this in the
<body>
tags:and something like this in the
<script>
tags:All assuming, of course, that you understand how to import the dojo.js source, and that your
<body>
tag has some dojo style applied to it (so that the comboBox dijit will render), like<body class="tundra">