CKEditor:批量使用class设置textarea

前端开发CKEditor 553
	if($(".page-content").length > 0){
		 $('.page-content').each( function () {
		    CKEDITOR.replace( this.id , {
		  		height: '500px',
		    });
		});
	}

Post Comment