Štai kaip buvo žadėta, skleisti naujausias scenarijų, kuris rodo naudotojų statusą puslapį vartotojų sąrašą. Scenarijus naudoja paprastas ir be galo paprastai gauti prašymą, nes UcoZ negali būti uždrausta dėl didelio prašymų skaičius. Šis scenarijus tinka kaip vartotojų svetainėje (/ index/15) sąrašą, ir vartotojų sąrašą internete (/ forum/0-0-1-35). Skirtumai tarp tik tai, versijos, kad forumo scenarijų virvės sąlyga atskaitomybėje.
Pirmasis variantas forumą:
Mes einame į PU - Modifikuoti Dizainas - Forumas ir tada įdėti $ kūno $:
Code
<script type="text/javascript"> var status='', text=''; $.get('/index/62',function(data){ text = $('a',$('cmd[p="content"]',data).text()).text(); $('.uTable tr:gt(0)').each(function() { var user = $('.uTd:first a:first',this).text(); if(text.indexOf(user)!=-1){stat=' (<span style="color:green">Online</span>)'}else{stat=' (<span style="color:red">Offline</span>)'}; $('.uTd:first a:first',this).after(stat); }); }); </script>
Antrasis variantas svetainėje:
Mes einame į PU - Izmnenie dizainas - Page vartotojų sąrašą ir tada įdėti $ kūno $:
Code
<script type="text/javascript"> var status='', text=''; $.get('/index/62',function(data){ text = $('a',$('cmd[p="content"]',data).text()).text(); $('.uTable tr:gt(0)').each(function() { var user = $('.uTd:first a:first',this).text(); if(text.indexOf(user)!=-1){stat=' (<span style="color:green">Online</span>)'}else{stat=' (<span style="color:red">Offline</span>)'}; $('.uTd:first a:first',this).after(stat); }); }); </script>
Scenarijus veikia tik jei pirmasis stulpelis yra prisijungusi.
English :
Here as promised, spread the latest script, which displays the status of users on the page with a list of users. The script uses a simple and infinitely generally get a request, because uCoz not be banned for a large number of requests. This script is suitable as for a list of users on the site (/ index/15), and for a list of users online (/ forum/0-0-1-35). Differences between the versions of only the fact that for the forum script twine conditional statements.
The first option for the forum:
We go to PU - Modify Design - Home Forum and then put $ BODY $: