回复 8楼iceman的帖子
例如 :
- <PUBLIC:COMPONENT>
- <PUBLIC:METHOD NAME="isValid">
- </PUBLIC:METHOD>
- </PUBLIC:COMPONENT>
- <SCRIPT language="javascript">
- function isValid(val) {
- //替换空格为''
- var result = val.replace(/\s*/g, '');
- if (result == "") {
- return "单元格不能为空";
- }
- else {
- return "";
- }
- }
- </SCRIPT>
复制代码
我想把isValid 多传个参数。
还有如果我想写多个方法在里面 应该如何调用呢? |