-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
52 lines (30 loc) · 1.08 KB
/
test.js
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
// 日付入力ダイアログ表示
reportdate = disp();
// 日付以降のRSS取得 ret: title nor.link
// nor.link文の記事詳細取得
// formに入力
//document.getElementsByName("sampleinput")[0].value = reportdate;
document.sampleform.submit();
function disp(){
// 入力ダイアログを表示 + 入力内容を user に代入
user = window.prompt("ユーザー名を入力してください", "");
/*
// 入力内容が tama の場合は example_tama.html にジャンプ
if(user == 'tama'){
location.href = "example_tama.html";
}
// 入力内容が hana の場合は example_hana.html にジャンプ
else if(user == 'hana'){
location.href = "example_hana.html";
}
// 入力内容が一致しない場合は警告ダイアログを表示
else if(user != "" && user != null){
window.alert(user + 'さんは登録されていません');
}
// 空の場合やキャンセルした場合は警告ダイアログを表示
else{
window.alert('キャンセルされました');
}
*/
return user;
}