MIL050.inc
1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<SCRIPT LANGUAGE="JAVASCRIPT">
var SFlg = false; //サブミットフラグを定義
function DoubleSubmit(){ //ダブルサブミットチェック関数
if (SFlg){ //ダブルサブミットの場合
alert("応答中です"); //メッセージを出力
return false;
}
SFlg = true; //サブミットフラグを設定
return true; //戻り値を設定
}
function memo_save(){
if ((document.e_gru.title_nm.value=="")) {
alert("署名タイトルは必須入力です");
document.e_gru.title_nm.focus();
return false;
}
if (DoubleSubmit()) {
document.e_gru.action = "MIL051.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
function memo_clear(type){
if (document.e_gru.title.value==0){
alert("署名タイトルを選択してください");
document.e_gru.title.focus();
return false;
}
if (confirm("署名を削除します\nよろしいですか?")){
if (DoubleSubmit()) {
document.e_gru.type.value=type;
document.e_gru.action = "MIL051.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
}
function SetCombo(){
var length = document.e_gru.memo_seq.length;
for( i = length - 1 ; i >= 0 ; i-- ){
if (document.e_gru.memo_seq[i].value==document.e_gru.title.value){
document.e_gru.title_nm.value=document.e_gru.memo_title[i].value;
document.e_gru.memo.value=document.e_gru.memo_naiyo[i].value;
if (document.e_gru.memo_disp[i].value=="1"){
document.e_gru.disp_set.checked=true;
}else{
document.e_gru.disp_set.checked=false;
}
break;
}
}
}
</SCRIPT>