var str = val; //select的id var num; //当前级数 var id; // 分类id num = str.substr(9,10); //alert(num); var nownum = parseInt(num)+1; // 将字符串转换为数字 id = $("#"+str+"").val(); var r = /^[1-9]+[0-9]*]*$/; //正整数 if (!r.test(id)) { //清空过时的选项 $("select").each(function(index){ if(index+1 > num) { $(this).remove(); } })
return false; } var url = 'gallery.php?act=category&pid='+id; $.ajax({ type: "POST", cache: false, url: url, datatype : 'json', timeout : 3000, success: function(result){ if ( result != 0) { var html = "";
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn