波色表 |
红波 |
01
02
07
08
12
13
18
19
23
24
29
30
34
35
40
45
46 |
蓝波 |
03
04
09
10
14
15
20
25
26
31
36
37
41
42
47
48 |
绿波 |
05
06
11
16
17
21
22
27
28
32
33
38
39
43
44
49 |
合数单双 |
合数单 |
01
03
05
07
09
10
12
14
16
18
21
23
25
27
29
30
32
34
36
38
41
var ifcheck = true;
var fid = '2';
var forumtitle = "默认版块";
var imgok = "collect.gif";
var imgno = "cancel.gif";
var myshortcut = "";
function CheckAll(form){
for(var i=0;i 1){
document.onkeydown=function(e){
var e = is_ie ? window.event : e;
var tagname = is_ie ? e.srcElement.tagName : e.target.tagName;
if(tagname == 'INPUT' || tagname == 'TEXTAREA'){
return;
}
actualCode = e.keyCode ? e.keyCode : e.charCode;
if(actualCode == 39 && page1){
window.location = 'thread.php?fid=2&search=&page=' + (page-1);
}
}
}
function shortCut() {
ajax.send('pw_ajax.php?action=shortcut&fid='+fid,'',function(){
ajax.guide();
var rText = ajax.request.responseText.split(' ');
if (typeof(rText[1]) != 'undefined' && rText[1] == 'successok') {
getObj('shortcut').innerHTML = "";
var shortcutforum = getObj('shortcutforum');
if (myshortcut == false) {
var shortcutname = getObj('shortcutname');
shortcutname.innerHTML = "收藏的版块: ";
shortcutforum.innerHTML = ""+forumtitle+" ";
} else {
if (IsElement('shortcutforum')) {
var li = document.createElement('li');
li.id = 'scf_'+fid;
li.innerHTML = ""+forumtitle+" ";
shortcutforum.appendChild(li);
}
}
} else if (typeof(rText[1]) != 'undefined' && rText[1] == 'successno') {
getObj('shortcut').innerHTML = "";
if (IsElement('scf_'+fid)) {
var thisnode = getObj('scf_'+fid);
var shortcutforum = thisnode.parentNode;
shortcutforum.removeChild(thisnode);
var li = shortcutforum.childNodes;
for (var i=0; i
|