我正在尝试找出如何在使用带自定义标记的jsp和struts 1.1时默认选中单选按钮。
当我以这种方式编写代码时:
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
....................................................................
<html:radio property="operazione" value="addizione" checked="checked">Addizione</html:radio>
<br />
日食说:
未定义的属性名称“已检查”
当我尝试在我的服务器Tomcat上运行此代码时,这就是我得到的:
根据TLD
检查标签无线电的属性无效
我读过this q/a但它涉及JavaScript ...... 你能救我吗?
答案 0 :(得分:0)
这不涉及javascript。您需要做的就是在相应的操作表单中设置属性值。加载页面时,在操作类中设置actionForm.property=value
。如果你需要javascript,
(function() {
// Set the value on loading the page
document.getElementByID("elementID").value=1;
})();
希望这有帮助。