var iconwar = " ";
var iconload = " ";
var badstr = "!&^#|%$)(- /?@`~';:{}[],=".\";
var badsql = "!&^| /?`~'=";
var $show = function (e) {try{document.getElementById(e).style.display="";} catch(e) {} };
var $hide = function (e) {try{document.getElementById(e).style.display="none";} catch(e) {} };
var $W = document.write;
var reurl,js_UserName;
reurl = document.referrer;
if (reurl=="")
{
reurl = "/index.html";
}
function onDisplay(id) {
if (document.getElementById(id).style.display == 'none') {
$show(id);
}
else {
$hide(id);
}
}
function onLabelTxt(id,LabelID,ShowTxt,HideTxt) {
if (document.getElementById(id).style.display == 'none') {
$show(id);
document.getElementById(LabelID).value = HideTxt;
}
else {
$hide(id);
document.getElementById(LabelID).value = ShowTxt;
}
}
function listdisp(tid,lid) {
if (document.getElementById(tid).style.display == 'none') {
$show(tid);
}
else {
$hide(tid);
}
if (lid == 't1') {
return 't1_off';
}
else if (lid == 't2') {
return 't2_off';
}
else if (lid == 't1_off') {
return 't1';
}
else if (lid == 't2_off') {
return 't2';
}
}
function trim(str) {
return (str '').replace(/(s )$/g, '').replace(/^s /g, '');
}
function addbookmark(url, site){
if(is_ie) {
window.external.addFavorite(url, site);
} else {
alert('Please press "Ctrl D" to add bookmark');
}
}
//AJAX_START
var xmlhttp=null;
function createxmlhttp(){
try {
xmlhttp=new ActiveXObject("Msxml2.xmlhttp") ;
}
catch(e) {
try {
xmlhttp=new ActiveXObject("Microsoft.xmlhttp") ;
}
catch(oc) {
xmlhttp=null ;
}
}
if ( !xmlhttp && typeof XMLHttpRequest != "undefined" ) {
xmlhttp = new XMLHttpRequest();
}
if (!xmlhttp) {
alert("您的浏览器不支AJAX特性,本页某些功能将无法正常使用!");
}
}
//js操作cookies函数 *********************
function delcookie(name){
setcookie(name, "");
}
function getcookie(name) {
var cookie_start = document.cookie.indexOf(name);
var cookie_end = document.cookie.indexOf(";", cookie_start);
return cookie_start == -1 ? '' : unescape(document.cookie.substring(cookie_start name.length 1, (cookie_end > cookie_start ? cookie_end : document.cookie.length)));
}
function setcookie(cookieName, cookieValue, seconds) {
var expires = new Date();
var path = "/";
var domain = "alixixi.com";
var secure = "";
expires.setTime(expires.getTime() seconds);
document.cookie = escape(cookieName) '=' escape(cookieValue)
(expires ? '; expires=' expires.toGMTString() : '')
(path ? '; path=' path : '/')
(domain ? '; domain=' domain : '')
(secure ? '; secure' : '');
}
//GetQueryString ***********************
var LocString=String(window.document.location.href);
function GetQueryString(str){
var rs=new RegExp("(^|)" str "=([^&]*)(&|$)","gi").exec(LocString),tmp;
if(tmp=rs)return tmp[2];
return " ";
}
//VScroll 显示上翻单条标题************************
function _ge(a) {return document.getElementById?document.getElementById(a):null;}
function VScroll() {
var m_box = null;
var m_lineHeight = 0;
var m_lineNum = 0;
var m_splitStr = '';
var m_speed = 0;
var m_delay = 0;
var m_pos = 0;
var m_stopTimes = 0;
var m_stop = false;
this.init = function(box,lnum,lheight,speed,delay,split) {
m_box = _ge(box);
m_lineNum = lnum;
m_lineHeight = lheight;
m_speed = speed;
m_delay = delay;
m_splitStr = split;
}
this.play = function() {
if ( m_stop ) {
return;
}
m_pos = m_box.scrollTop;
if( m_pos % m_lineHeight == 0 && m_stopTimes m_stopTimes ;
} else {
m_box.scrollTop ;
if ( m_pos % m_lineHeight == 0 && m_stopTimes >= m_delay ) {
m_stopTimes = 0;
}
}
if ( m_box.scrollTop > m_lineHeight * m_lineNum ) {
m_box.scrollTop = 0;
}
}
this.show = function () {
setInterval( m_self ".play()", m_speed );
}
this.setSelf = function(n) {
m_self = n;
}
this.stop = function(n) {
m_stop = n;
}
}
function show_date() {
var today = new Date();
var day = new Array();
var str = '';
day[0] = "日";
day[1] = "一";
day[2] = "二";
day[3] = "三";
day[4] = "四";
day[5] = "五";
day[6] = "六";
str = today.getFullYear();
str = "年";
str = today.getMonth() 1;
str = "月";
str = today.getDate();
str = "日";
str = " ";
str = "星期";
str = day[today.getDay()];
return str;
}
function ajaxPost(url,stateurl,data,info,loading){
var url,stateurl,data,info,loading
createxmlhttp();
if (data=="" || data==null)
{
//getMode
xmlhttp.open("get",url,true);
xmlhttp.setRequestHeader("CONTENT-TYPE","application/x-www-form-urlencoded");
xmlhttp.onreadystatechange= function () { checkState(stateurl,info,loading); } ;
xmlhttp.send(null);
}
else
{
//postMode
xmlhttp.open("post",url, true, "", "");
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlhttp.onreadystatechange= function () { checkState(stateurl,info,loading); }
xmlhttp.send(data);
}
}
function checkState(stateurl,info,loadnews){
if (xmlhttp.readyState == 4){
document.getElementById(info).innerHTML = loadnews;
if(xmlhttp.status == 200){
var retext = xmlhttp.responseText.split("$");
document.getElementById(info).innerHTML=retext[1];
switch(retext[0]) {
case "usreg" : if(stateurl!=="")location.href=stateurl;
break;
case "uslogin" : if(stateurl!=="")location.href=stateurl;
break;
case "active" : location.href=retext[2];
break;
case "errinfo" : return false;
break;
default : document.getElementById(info).innerHTML=retext[0];
}
}
}
else{
document.getElementById(info).innerHTML=loadnews;
}
}
//AJAX_END
//运行代码
function runEx(cod1) {
cod=document.getElementById(cod1)
var code=cod.value;
if (code!=""){
var newwin=window.open('','','');
newwin.opener = null
newwin.document.write(code);
newwin.document.close();
}
}
//复制代码
function doCopy2(ID) {
if (document.all){
textRange = document.getElementById(ID).createTextRange();
textRange.execCommand("Copy");
alert('复制成功');
}
else{
alert("此功能只能在IE上有效")
}
}
//复制代码
function doCopy(obj) {
var rng = document.body.createTextRange();
rng.moveToElementText(obj);
rng.scrollIntoView();
rng.select();
rng.execCommand("Copy");
rng.collapse(false);
}
function doCopyUrl()
{
document.getElementById("CopyUrl").value=parent.location.href;
document.getElementById("CopyUrl").select();
document.execCommand("copy");
alert("网址成功复制到剪贴板!")
}
//另存代码
function doSave(obj) {
var winname = window.open('', '_blank', 'top=10000');
winname.document.open('text/html', 'replace');
winname.document.writeln(obj.value);
winname.document.execCommand('saveas','','code.htm');
winname.close();
}
function findobj(n, d) {
var p, i, x;
if(!d) d = document;
if((p = n.indexOf("?"))>0 && parent.frames.length) {
d = parent.frames[n.substring(p 1)].document;
n = n.substring(0, p);
}
if(x != d[n] && d.all) x = d.all[n];
for(i = 0; !x && i for(i = 0; !x && d.layers && i if(!x && document.getElementById) x = document.getElementById(n);
return x;
}
function submitonce(theform){
//if IE 4 or NS 6
if (document.all||document.getElementById){
//screen thru every element in the form, and hunt down "submit" and "reset"
for (i=0;i
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
//disable em
tempobj.disabled=true
}
}
}
function openScript(url, width, height){
var Win = window.open(url,"openScript",'width=' width ',height=' height ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}
function CheckAll(form) {
for (var i=0;i
if (e.name != 'chkall') e.checked = form.chkall.checked;
}
}
function chkuserlogin() {
if (getcookie('userid') == ''||getcookie('userid') == 0||getcookie('username') == '') {
return false;
}
else {
return true;
}
}
function chkcookieed() {
if (getcookie("username") !== "") {
var url = "/ajax.asp?action=loginmenu";
url = "&random=" Math.random();
ajaxPost(url,null,null,"top_login"," ");
}
}
function userlogout() {
var url = "/AspCode.asp?getType=logout";
url = "&random=" Math.random();
ajaxPost(url,null,null,"top_login","正在退出...");
chkcookieed();
alert('欢迎再次光临阿里西西WEB开发社区...');
}
//Cookie解密
function DecodeCookie(str)
{
var strArr;
var strRtn="";
strArr=str.split("a");
try{
for (var i=strArr.length-1;i>=0;i--)
strRtn =String.fromCharCode(eval(strArr[i]));
}catch(e){
}
return strRtn;
}
function isnumber(str){
var digits="1234567890";
var i=0;
var strlen=str.length;
while((i
if(digits.indexOf(char)==-1)return false;i ;
}
return true;
}
//检查非法字符
//str 要检查的字符
//badwords 非法字符 &|=
function checkbadwords(str, badwords) {
if (typeof (str) != "string" || typeof (badwords) != "string") {
return (false);
}
for (i=0; i
for (j=0; j
return false;
break;
}
}
}
return true;
}
function switchTag(tag,bar)
{
for(i=1; i {
if ("tag" i==tag)
{
document.getElementById(tag).getElementsByTagName("a")[0].className="selectli" i;
document.getElementById(tag).getElementsByTagName("a")[0].getElementsByTagName("span")[0].className="selectspan" i;
}else{
document.getElementById("tag" i).getElementsByTagName("a")[0].className="";
document.getElementById("tag" i).getElementsByTagName("a")[0].getElementsByTagName("span")[0].className="";
}
if ("bar" i==bar)
{
document.getElementById(bar).className="";
}else{
document.getElementById("bar" i).className="hidebar";
}
document.getElementById("bar").className=bar;
}
}
function switchNew(fornum,showname,lname,newid)
{
for(i=1; i {
if (lname i==newid)
{
document.getElementById(newid).className=showname;
}else{
document.getElementById(lname i).className="hidebar";
}
}
}
function bgc(cssid) {
switch(cssid) {
case 0 : this.style.background='#FFFFFF';
break;
case 1 : this.style.background='#E8F5FE';
break;
case 2 : this.style.background='#FFFFDD';
break;
case 3 : this.style.background='#F2FDDB';
break;
case 4 : this.style.background='#FFE7F4';
break;
case 5 : this.style.background='#F7F7F7';
break;
default : this.style.background='#FFFFFF';
}
}
function imgzoom(o){
if(event.ctrlKey) {
var zoom = parseInt(o.style.zoom, 10) || 100;
zoom -= event.wheelDelta / 12;
if(zoom > 0) {
o.style.zoom = zoom '%';
}
return false;
} else {
return true;
}
}
function CheckAll(form)
{
for (var i=0;i
var e = form.elements[i];
if (e.Name != "chkAll"&&e.disabled!=true)
e.checked = form.chkAll.checked;
}
}
function addfav(favtitle,favform,favid)
{
location.href = "http://www.alixixi.com/account/user_Favorites.asp?url=" document.URL "&favtitle=" favtitle "&from=" favform "&id=" favid;
}
function mto(aid) {
location.href = "http://www.alixixi.com/account/user_post.asp?aid=" aid;
}
function apost(url){
createxmlhttp();
//getMode
url = "&random=" Math.random();
xmlhttp.open("get",url,true);
xmlhttp.setRequestHeader("CONTENT-TYPE","application/x-www-form-urlencoded");
//xmlhttp.onreadystatechange= function () { checkSeo(); } ;
xmlhttp.send(null);
}
function checkSeo(){
var info = 'test';
var loadnews = '正在加载';
if (xmlhttp.readyState == 4){
document.getElementById(info).innerHTML = loadnews;
if(xmlhttp.status == 200){
var retext = xmlhttp.responseText;
document.getElementById(info).innerHTML=retext;
}
}
else{
document.getElementById(info).innerHTML=loadnews;
}
}
function setstyle(sid) {
if (sid!=='' || sid!==null)
{
switch (parseInt(sid))
{
case 1:
setcookie('ali_style', 1, 600000);
document.all.css.href = '/css/style1.css';
break;
case 2:
setcookie('ali_style', 2, 600000);
document.all.css.href = '/css/style2.css';
break;
case 3:
setcookie('ali_style', 3, 600000);
document.all.css.href = '/css/style3.css';
break;
}
}
}
function ResumeError() {
return true;
}
window.onerror = ResumeError;
setstyle(getcookie('ali_style'));
//window.onload = setstyle(getcookie('ali_style'));

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

This article demonstrates how to automatically refresh a div's content every 5 seconds using jQuery and AJAX. The example fetches and displays the latest blog posts from an RSS feed, along with the last refresh timestamp. A loading image is optiona

Matter.js is a 2D rigid body physics engine written in JavaScript. This library can help you easily simulate 2D physics in your browser. It provides many features, such as the ability to create rigid bodies and assign physical properties such as mass, area, or density. You can also simulate different types of collisions and forces, such as gravity friction. Matter.js supports all mainstream browsers. Additionally, it is suitable for mobile devices as it detects touches and is responsive. All of these features make it worth your time to learn how to use the engine, as this makes it easy to create a physics-based 2D game or simulation. In this tutorial, I will cover the basics of this library, including its installation and usage, and provide a

The article discusses strategies for optimizing JavaScript performance in browsers, focusing on reducing execution time and minimizing impact on page load speed.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
