sfsdfsfsdf(添加新分类)

发布文章时无刷新增加文章分类

系统 1649 0
< p > 文章分类: < select name ="articletypeid" id ="articletypeid" >
< option value =“1” > sfsdf </ option >
< option value =“1” > sfsdf </ option >
</ select >
(
< a style ="cursor:hand;" onclick ="javascript:addnewtype.style.display='';" > 添加新分类 </ a > )
< p id ="addnewtype" style ="display:none;" >
新分类:
< input name ="newtypename" id ="newtypename" type ="text" size ="16" />
< input type ="button" name ="button" value ="添加" onClick ="addacttype();" />
</ p >

< script language ="javascript" type ="text/javascript" src ="js/createxml.js" ></ script >
< script language ="javascript" type ="text/javascript" src ="js/article.js" ></ script >

article.js

function addacttype() ... {
var content = document.getElementById( " newtypename " ).value;
if (content == "" || content.length > 10 ) ... {
alert(
' 分类名称没有填写,或者超过了10个字符! ' );
return false ;
}
else ... {
var addnew = datexml( " articletypeedit.asp " , " &mark=add&loginid= " + userloginid + " &newtypename= " + content)
if (addnew) ... {
if (addnew != " wrong " && addnew != " no " ) ... {
addOption(content,addnew);
addnewtype.style.display
= ' none ' ;
}
else ... {
alert(
' 分类添加失败,请稍候再试,或联系网站管理员! ' );
}

}

}

}


function addOption(strName,strValue) ... {
var objSelect = document.getElementById( " articletypeid " );
var objOption = new Option(strName,strValue);
objSelect.add(objOption,
0 );
objSelect.selectedIndex
= strName;
}

createxml.js

// JavaScriptDocument
function InitAjax() ... {
var ajax = false ;
try ... {ajax = new ActiveXObject( " Msxml2.XMLHTTP " );}
catch (e) ... {
try ... {ajax = new ActiveXObject( " Microsoft.XMLHTTP " );}
catch (E) ... {ajax = false ;}
}

if ( ! ajax && typeof XMLHttpRequest != ' undefined ' ) ... {ajax = new XMLHttpRequest();}
return ajax;
}

function datexml(url,value) ... {
var number = Math.random();
var url = url + " ?qaaq= " + number + value;
var ajax = InitAjax();
 ajax.open(
" GET " ,url, false );
 ajax.send(
null );
// ajax.onreadystatechange=function(){}
if (ajax.readyState == 4 && ajax.status == 200 ) ... { return unescape(ajax.responseText);}
}

发布文章时无刷新增加文章分类


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论