www.gusucode.com > ShopEx481 & PHPWind 整合版码程序 > bbs/js/pw_draft.js

    
function PwDraft(){

}

PwDraft.prototype = {
	
	insert : function(o){
		var obj = o.parentNode.firstChild;
		if(typeof editor != 'undefined' && typeof AddCode == 'function'){
			editor.focusEditor();
			AddCode(editor._editMode == "textmode" ? obj.value : codetohtml(obj.value),'');
		} else{
			document.FORM.atc_content.value += obj.value;
		}
	},

	update : function(o,id){
		var msg = ajax.convert(o.parentNode.firstChild.value);
		ajax.send('pw_ajax.php','action=draft&step=3&atc_content='+msg+'&did='+id,ajax.guide);
	},

	del : function(id,page){
		ajax.send('pw_ajax.php','action=draft&step=4&did='+id,function(){
			ajax.guide();
			draft.pages(page);
		});
	},

	prev : function(page){
		draft.pages(parseInt(page)-1);
	},

	next : function(page){
		draft.pages(parseInt(page)+1);
	},

	pages : function(page){
		ajax.send('pw_ajax.php','action=draft&page='+page,function(){
			if(ajax.request.responseText.indexOf('<') != -1){
				read.menu.innerHTML = ajax.request.responseText;
			} else{
				closep();
			}
		});
	}
}

var draft = new PwDraft();