JSF 中 怎么用JS 获取标签<af:selectBooleanCheckbox > 的值 是true 还是 false
<af:selectBooleanCheckboxid="sbc1"autoSubmit="true"clientComponent="true"><af:clientL...
<af:selectBooleanCheckbox id="sbc1" autoSubmit="true" clientComponent="true" >
<af:clientListener type="click" method="selectbox"/>
</af:selectBooleanCheckbox>
<af:resource type="javascript">
function selectbox(event) {
event.cancel();
var eventSource = event.getSource();
var cboxValue = document.getElementById("sbc1").value; (这样获取不了)
var cboxValue1 = document.getElementById("sbc1::content").value; (这样也获取不了)
}
</af:resource>
求大神指导!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
这是页面审查元素 html 展开
<af:clientListener type="click" method="selectbox"/>
</af:selectBooleanCheckbox>
<af:resource type="javascript">
function selectbox(event) {
event.cancel();
var eventSource = event.getSource();
var cboxValue = document.getElementById("sbc1").value; (这样获取不了)
var cboxValue1 = document.getElementById("sbc1::content").value; (这样也获取不了)
}
</af:resource>
求大神指导!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
这是页面审查元素 html 展开
展开全部
用js获取你得看最终生成的html代码里是什么样的标签,看网页源文件可以看到
如果页面渲染完后调用的这个方法是可以取到的。
<script type="text/javascript">
$(function() {
alert(document.getElementById("sdc::testid").value); //will alert 'aabbcc'
});
</script>
<body>
<input id="sdc::testid" name="sdc" value="aabbcc"></input>
</body>
如果页面渲染完后调用的这个方法是可以取到的。
<script type="text/javascript">
$(function() {
alert(document.getElementById("sdc::testid").value); //will alert 'aabbcc'
});
</script>
<body>
<input id="sdc::testid" name="sdc" value="aabbcc"></input>
</body>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询