javascript 验证中的问题,如何从 jsf/icefaces 调用 javascript?
javascript验证中的问题,如何调用javascript?
<html>
<head>
<script type='text/javascript'>
function validate()
{
alert('hi');
}
</script>
</head>
< body>
<ice:panelGrid>
<ice:inputText/>
.....
...
...
</ice:panelGrid>
<ice:commandButton onclick="validate();"/>
</body>
</html>
我无法访问 javascript.Getting 错误,因为验证未定义。
如果 defin 是 onClick="alert('hi');" 则相同该警报消息运行良好。
那么我应该对调用 javascript 进行哪些更改?
problem in javascript validation , how to make call to javascript ?
<html>
<head>
<script type='text/javascript'>
function validate()
{
alert('hi');
}
</script>
</head>
< body>
<ice:panelGrid>
<ice:inputText/>
.....
...
...
</ice:panelGrid>
<ice:commandButton onclick="validate();"/>
</body>
</html>
I am not able to access the javascript.Getting error as validate not defined.
same if defin is onClick="alert('hi');" this alert message is working well.
So what changes should i do the invoke javascript ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以使用这个代码:
you can use this code:
添加结束
标记。
Put an end
</script>
tag.我建议使用双引号:
I'd advise for double-quotes: