亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > ASP > 正文

網頁編輯器FCKeditor 2.6.5 ASP環境安裝配置使用說明

2024-07-21 02:53:58
字體:
來源:轉載
供稿:網友
今天用到在線編輯器在asp環境下上傳竟然無效。找了好久才找到這介紹,現備份于此,需要的朋友可以參考下
 
(1)精簡,"言多必失",文件多了也是一種隱患。FCKEditor支持多種服務器腳本語言,實際使用的時候我們根本用不了那么多文件,我們要根據自己的需要對其進行精簡。 
對于ASP系統來說: 

FCKEditor根目錄,僅保留"fckeditor.asp,fckconfig.js,fckeditor.js,fckpackager.xml,fckstyles.xml, 
fcktemplates.xml"這些文件以及editor目錄。刪除示例目錄"_samples"。 
"fckeditor/editor/filemanager/connectors"目錄下面僅保留"asp"目錄,刪除其它目錄和文件。 

(2)修改文件上傳采用的腳本程序(語言)。 

默認的FCKEditor文件上傳程序為asp,如果是用在asp系統中,那就不用再修改了。 

如果是用在PHP系統中的話,需要做如下修改,打開fckconfig.js 
找到: 
var _FileBrowserLang ge = asp 
var _QuickUploadLang ge = asp 
改成: 
var _FileBrowserLang ge = php 
var _QuickUploadLang ge = php 

(3)開啟文件上傳,修改文件上傳目錄。 

對于ASP系統來說: 
打開fckeditor/editor/filemanager/connectors/asp/config.asp 
啟用文件上傳: 

找到: 
ConfigIsEnabled = false 

改成: 
ConfigIsEnabled = tr 

設置上傳存放目錄: 

找到: 
ConfigUserFilesPath = "/admin/uppic/" 
改成: 
ConfigUserFilesPath = "自定義的路徑" 

對于PHP系統來說: 
打開fckeditor/editor/filemanager/browser/default/connectors/php/config.php 
啟用文件上傳: 

找到: 
$Config[Enabled] = false 

改成: 
$Config[Enabled] = tr 

設置上傳存放目錄: 

找到: 
$Config[UserFilesPath] = /userfiles/ 
改成: 
$Config[UserFilesPath] = 自定義的路徑 

(4)修改上傳文件命名方式。 

FCKEditor上傳文件,文件名采用原文件名,如果想采用自定義的文件命名方式(比如,隨即名稱),可以修改如下地 
方: 

對于ASP系統來說: 
打開fckeditor/sample/edit/editor/filemanager/connectors/asp/commands.asp 

找到: 
sFileName = SanitizeFileName( sFileName ) 

將該句改為自定義的文件命名格式,例如: 

dim RndStr 
Randomize 
RndStr = Cstr(Fix(9000*rnd()+1000)) 產生一個隨機數 
sFileName =year(date)&month(Date)&day(Date)&hour(time)&minute(time)&second(time)&RndStr &"." & 
**tension 

對于PHP系統來說: 
打開fckeditor/editor/editor/filemanager/connectors/php/commands.php 

找到: 
$sOriginalFileName = $sFileName ; 

在該句前面加入: 

// 初始化種子 
$sstr =split(" ",microtime(),5); 
$seed =$sstr[0]*10000; 
// 使用種子初始化隨機數發生器 
srand($seed); 
// 生成指定范圍內的隨機數 
$random =rand(1000,10000); 
// 合成隨即的文件名 
$sFileName = date("YmdHis", time()).$random.".".$**tension; 


(5)FCKEditor在程序中引用方式。 

對于ASP系統來說: 
需要包含下面的頭文件 
<!--#incl? file="fckeditor/fckeditor.asp"--> 
在編輯器所在的位置添加如下代碼: 
<% 
Dim oFCKeditor 
Set oFCKeditor = New FCKeditor 
oFCKeditor.BasePath = "/fckeditor/" 這個路徑必須是相對于站點根目錄的路徑,設置錯誤編輯器 
將無法顯示 

oFCKeditor.ToolbarSet="Default" 
oFCKeditor.Width = "98%" 
oFCKeditor.Height= "500px" 

oFCKeditor.Val = "" 設置默認值 
oFCKeditor.Create "shangpin_description" 編輯器的id,相當于input標簽的name屬性值,這里是 
shangpin_description 
%> 

對于PHP來說: 
在編輯器所在的位置添加如下代碼: 
<?php 
incl?("fckeditor/fckeditor.php"); // 頭文件 
$oFCKeditor = new FCKeditor("shangpin_description") ; // 編輯器的id,相當于input標簽的 
name屬性值,這里是shangpin_description 
$oFCKeditor->BasePath="/fckeditor/ " ; //設置FCKeditor路徑 

$oFCKeditor->ToolbarSet ="Default"; 
$oFCKeditor->Width="98%"; 
$oFCKeditor->Height="500px"; 

$oFCKeditor->Val=""; // 設置默認值 
$oFCKeditor->Create(); 
?> 

(6)獲取FCKEditor中的數據。 

對于服務器端腳本程序來說,將"編輯器的id"當做input標簽的name屬性值來獲取即可,例如: 

在ASP中reqst("shangpin_description"),在PHP中$_REQST["shangpin_description"] 

JS中用FCKeditorAPI.GetInstance(shangpin_description).GetXHTML(tr)得到shangpin_description對應的值 





ckEditor的ASP配置 

在網上找了好久終于找到了!O(∩_∩)O哈哈~ 
一、使用方法: 

1、在頁面<head>中引入ckeditor核心文件ckeditor.js 

<script type="text/javascript" src="ckeditor/ckeditor.js"></script> 

2、在使用編輯器的地方插入HTML控件<textarea> 

<textarea id="TextArea1" cols="20" rows="2" class="ckeditor"></textarea> 

如果是ASP.NET環境,也可用服務器端控件<TextBox> 

<asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="ckeditor"></asp:TextBox> 

注意在控件中加上 class="ckeditor" 。 

3、將相應的控件替換成編輯器代碼 

<script type="text/javascript"> 
CKEDITOR.replace('TextArea1'); 
//如果是在ASP.NET環境下用的服務器端控件<TextBox> 
CKEDITOR.replace('tbContent'); 
//如果<TextBox>控件在母版頁中,要這樣寫 
CKEDITOR.replace('<%=tbContent.ClientID.Replace("_","$") %>'); 
</script> 

4、配置編輯器 

ckeditor的配置都集中在 ckeditor/config.js 文件中,下面是一些常用的配置參數: 

// 界面語言,默認為 'en' 

config.language = 'zh-cn'; 

// 設置寬高 

config.width = 400; 

config.height = 400; 

// 編輯器樣式,有三種:'kama'(默認)、'office2003'、'v2' 

config.skin = 'v2'; 

// 背景顏色 

config.uiColor = '#FFF'; 

// 工具欄(基礎'Basic'、全能'Full'、自定義)plugins/toolbar/plugin.js 

config.toolbar = 'Basic'; 

config.toolbar = 'Full'; 

這將配合: 
config.toolbar_Full = [ 
['Source','-','Save','NewPage','Preview','-','Templates'], 
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], 
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], 
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'], 
'/', 
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], 
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], 
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], 
['Link','Unlink','Anchor'], 
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], 
'/', 
['Styles','Format','Font','FontSize'], 
['TextColor','BGColor'] 
]; 

//工具欄是否可以被收縮 
config.toolbarCanCollapse = true; 

//工具欄的位置 
config.toolbarLocation = 'top';//可選:bottom 

//工具欄默認是否展開 
config.toolbarStartupExpanded = true; 

// 取消 “拖拽以改變尺寸”功能 plugins/resize/plugin.js 
config.resize_enabled = false; 

//改變大小的最大高度 

config.resize_maxHeight = 3000; 

//改變大小的最大寬度 
config.resize_maxWidth = 3000; 

//改變大小的最小高度 
config.resize_minHeight = 250; 

//改變大小的最小寬度 
config.resize_minWidth = 750; 
// 當提交包含有此編輯器的表單時,是否自動更新元素內的數據 
config.autoUpdateElement = true; 

// 設置是使用絕對目錄還是相對目錄,為空為相對目錄 
config.baseHref = '' 

// 編輯器的z-index值 
config.baseFloatZIndex = 10000; 

//設置快捷鍵 
config.keystrokes = [ 
[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], //獲取焦點 
[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], //元素焦點 

[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], //文本菜單 

[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], //撤銷 
[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], //重做 
[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ], // 

[ CKEDITOR.CTRL + 76 /*L*/, 'link' ], //鏈接 

[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], //粗體 
[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], //斜體 
[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ], //下劃線 

[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ] 


//設置快捷鍵 可能與瀏覽器快捷鍵沖突 plugins/keystrokes/plugin.js. 
config.blockedKeystrokes = [ 
CKEDITOR.CTRL + 66 /*B*/, 
CKEDITOR.CTRL + 73 /*I*/, 
CKEDITOR.CTRL + 85 /*U*/ 


//設置編輯內元素的背景色的取值 plugins/colorbutton/plugin.js. 
config.colorButton_backStyle = { 
element : 'span', 
styles : { 'background-color' : '#(color)' } 


//設置前景色的取值 plugins/colorbutton/plugin.js 
config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520, 

006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE, 

A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5, 

FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF' 

//是否在選擇顏色時顯示“其它顏色”選項 plugins/colorbutton/plugin.js 
config.colorButton_enableMore = false 

//區塊的前景色默認值設置 plugins/colorbutton/plugin.js 
config.colorButton_foreStyle = { 
element : 'span', 
styles : { 'color' : '#(color)' } 
}; 

//所需要添加的CSS文件 在此添加 可使用相對路徑和網站的絕對路徑 
config.contentsCss = './contents.css'; 

//文字方向 
config.contentsLangDirection = 'rtl'; //從左到右 

//CKeditor的配置文件 若不想配置 留空即可 
CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } ); 

//界面編輯框的背景色 plugins/dialog/plugin.js 
config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; //可設置參考 
config.dialog_backgroundCoverColor = 'white' //默認 

//背景的不透明度 數值應該在:0.0~1.0 之間 plugins/dialog/plugin.js 
config.dialog_backgroundCoverOpacity = 0.5 

//移動或者改變元素時 邊框的吸附距離 單位:像素 plugins/dialog/plugin.js 
config.dialog_magnetDistance = 20; 

//是否拒絕本地拼寫檢查和提示 默認為拒絕 目前僅firefox和safari支持 plugins/wysiwygarea/plugin.js. 
config.disableNativeSpellChecker = true 

//進行表格編輯功能 如:添加行或列 目前僅firefox支持 plugins/wysiwygarea/plugin.js 
config.disableNativeTableHandles = true; //默認為不開啟 

//是否開啟 圖片和表格 的改變大小的功能 config.disableObjectResizing = true; 
config.disableObjectResizing = false //默認為開啟 

//設置HTML文檔類型 
config.docType = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "; 

//是否對編輯區域進行渲染 plugins/editingblock/plugin.js 
config.editingBlock = true; 

//編輯器中回車產生的標簽 
config.enterMode = CKEDITOR.ENTER_P; //可選:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV 

//是否使用HTML實體進行輸出 plugins/entities/plugin.js 
config.entities = true; 

//定義更多的實體 plugins/entities/plugin.js 
config.entities_additional = '#39'; //其中#代替了& 

//是否轉換一些難以顯示的字符為相應的HTML字符 plugins/entities/plugin.js 
config.entities_greek = true; 

//是否轉換一些拉丁字符為HTML plugins/entities/plugin.js 
config.entities_latin = true; 

//是否轉換一些特殊字符為ASCII字符 如"This is Chinese: 漢語."轉換為"This is Chinese: 漢語." plugins/entities/plugin.js 
config.entities_processNumerical = false; 

//添加新組件 
config.extraPlugins = 'myplugin'; //非默認 僅示例 

//使用搜索時的高亮色 plugins/find/plugin.js 
config.find_highlight = { 
element : 'span', 
styles : { 'background-color' : '#ff0', 'color' : '#00f' } 
}; 

//默認的字體名 plugins/font/plugin.js 
config.font_defaultLabel = 'Arial'; 

//字體編輯時的字符集 可以添加常用的中文字符:宋體、楷體、黑體等 plugins/font/plugin.js 
config.font_names = 'Arial;Times New Roman;Verdana'; 

//文字的默認式樣 plugins/font/plugin.js 
config.font_style = { 
element : 'span', 
styles : { 'font-family' : '#(family)' }, 
overrides : [ { element : 'font', attributes : { 'face' : null } } ] 
}; 

//字體默認大小 plugins/font/plugin.js 
config.fontSize_defaultLabel = '12px'; 

//字體編輯時可選的字體大小 plugins/font/plugin.js 
config.fontSize_sizes ='8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px' 

//設置字體大小時 使用的式樣 plugins/font/plugin.js 
config.fontSize_style = { 
element : 'span', 
styles : { 'font-size' : '#(size)' }, 
overrides : [ { element : 'font', attributes : { 'size' : null } } ] 
}; 

//是否強制復制來的內容去除格式 plugins/pastetext/plugin.js 
config.forcePasteAsPlainText =false //不去除 

//是否強制用“&”來代替“&”plugins/htmldataprocessor/plugin.js 
config.forceSimpleAmpersand = false; 

//對address標簽進行格式化 plugins/format/plugin.js 
config.format_address = { element : 'address', attributes : { class : 'styledAddress' } }; 

//對DIV標簽自動進行格式化 plugins/format/plugin.js 
config.format_div = { element : 'div', attributes : { class : 'normalDiv' } }; 

//對H1標簽自動進行格式化 plugins/format/plugin.js 
config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } }; 

//對H2標簽自動進行格式化 plugins/format/plugin.js 
config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } }; 

//對H3標簽自動進行格式化 plugins/format/plugin.js 
config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } }; 

//對H4標簽自動進行格式化 plugins/format/plugin.js 
config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } }; 

//對H5標簽自動進行格式化 plugins/format/plugin.js 
config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } }; 

//對H6標簽自動進行格式化 plugins/format/plugin.js 
config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } }; 

//對P標簽自動進行格式化 plugins/format/plugin.js 
config.format_p = { element : 'p', attributes : { class : 'normalPara' } }; 

//對PRE標簽自動進行格式化 plugins/format/plugin.js 
config.format_pre = { element : 'pre', attributes : { class : 'code' } }; 

//用分號分隔的標簽名字 在工具欄上顯示 plugins/format/plugin.js 
config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div'; 

//是否使用完整的html編輯模式 如使用,其源碼將包含:<html><body></body></html>等標簽 
config.fullPage = false; 

//是否忽略段落中的空字符 若不忽略 則字符將以“”表示 plugins/wysiwygarea/plugin.js 
config.ignoreEmptyParagraph = true; 

//在清除圖片屬性框中的鏈接屬性時 是否同時清除兩邊的<a>標簽 plugins/image/plugin.js 
config.image_removeLinkByEmptyURL = true; 

//一組用逗號分隔的標簽名稱,顯示在左下角的層次嵌套中 plugins/menu/plugin.js. 
config.menu_groups ='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea'; 

//顯示子菜單時的延遲,單位:ms plugins/menu/plugin.js 
config.menu_subMenuDelay = 400; 

//當執行“新建”命令時,編輯器中的內容 plugins/newpage/plugin.js 
config.newpage_html = ''; 

//當從word里復制文字進來時,是否進行文字的格式化去除 plugins/pastefromword/plugin.js 
config.pasteFromWordIgnoreFontFace = true; //默認為忽略格式 

//是否使用<h1><h2>等標簽修飾或者代替從word文檔中粘貼過來的內容 plugins/pastefromword/plugin.js 
config.pasteFromWordKeepsStructure = false; 

//從word中粘貼內容時是否移除格式 plugins/pastefromword/plugin.js 
config.pasteFromWordRemoveStyle = false; 

//對應后臺語言的類型來對輸出的HTML內容進行格式化,默認為空 
config.protectedSource.push( /</?[/s/S]*?/?>/g ); // PHP Code 
config.protectedSource.push( //g ); // ASP Code 
config.protectedSource.push( /(]+>[/s|/S]*?<//asp:[^/>]+>)|(]+//>)/gi ); // ASP.Net Code 

//當輸入:shift+Enter時插入的標簽 
config.shiftEnterMode = CKEDITOR.ENTER_P; //可選:CKEDITOR.ENTER_BR或CKEDITOR.ENTER_DIV 

//可選的表情替代字符 plugins/smiley/plugin.js. 
config.smiley_descriptions = [ 
':)', ':(', ';)', ':D', ':/', ':P', 
'', '', '', '', '', '', 
'', ';(', '', '', '', '', 
'', ':kiss', '' ]; 

//對應的表情圖片 plugins/smiley/plugin.js 
config.smiley_images = [ 
'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif', 
'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif', 
'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif', 
'broken_heart.gif','kiss.gif','envelope.gif']; 

//表情的地址 plugins/smiley/plugin.js 
config.smiley_path = 'plugins/smiley/images/'; 

//頁面載入時,編輯框是否立即獲得焦點 plugins/editingblock/plugin.js plugins/editingblock/plugin.js. 
config.startupFocus = false; 

//載入時,以何種方式編輯 源碼和所見即所得 "source"和"wysiwyg" plugins/editingblock/plugin.js. 
config.startupMode ='wysiwyg'; 

//載入時,是否顯示框體的邊框 plugins/showblocks/plugin.js 
config.startupOutlineBlocks = false; 

//是否載入樣式文件 plugins/stylescombo/plugin.js. 
config.stylesCombo_stylesSet = 'default'; 
//以下為可選 
config.stylesCombo_stylesSet = 'mystyles'; 
config.stylesCombo_stylesSet = 'mystyles:/editorstyles/styles.js'; 
config.stylesCombo_stylesSet = 'mystyles:http://www.example.com/editorstyles/styles.js'; 

//起始的索引值 
config.tabIndex = 0; 

//當用戶鍵入TAB時,編輯器走過的空格數,( ) 當值為0時,焦點將移出編輯框 plugins/tab/plugin.js 
config.tabSpaces = 0; 

//默認使用的模板 plugins/templates/plugin.js. 
config.templates = 'default'; 

//用逗號分隔的模板文件plugins/templates/plugin.js. 
config.templates_files = [ 'plugins/templates/templates/default.js' ] 

//當使用模板時,“編輯內容將被替換”框是否選中 plugins/templates/plugin.js 
config.templates_replaceContent = true; 

//主題 
config.theme = 'default'; 

//撤銷的記錄步數 plugins/undo/plugin.js 
config.undoStackSize =20; 

// 在 CKEditor 中集成 CKFinder,注意 ckfinder 的路徑選擇要正確。 
//CKFinder.SetupCKEditor(null, '/ckfinder/');

注:相關教程知識閱讀請移步到編輯器頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
庆余年2免费日韩剧观看大牛| 欧美黑人xxx| 欧美日韩福利在线观看| 国产精品色视频| 精品少妇一区二区30p| 欧美美女15p| 国产www精品| 国产亚洲aⅴaaaaaa毛片| 国产香蕉一区二区三区在线视频| 国产精品夜色7777狼人| 成人中文字幕+乱码+中文字幕| 亚洲成人在线网| 中文字幕精品网| 日韩美女视频免费在线观看| 欧美成人精品xxx| 欧美日韩中文字幕日韩欧美| 国产精品久久久久久久久免费| 欧美午夜精品久久久久久人妖| 日本午夜在线亚洲.国产| 91视频国产精品| 91国产精品视频在线| 国产精品成人一区| 97精品国产97久久久久久| 欧美高清视频在线播放| 国产精品一区av| 日本成熟性欧美| 色婷婷综合久久久久中文字幕1| 亚洲xxxx在线| 在线观看日韩av| 久久综合网hezyo| 久久久久久午夜| 色狠狠久久aa北条麻妃| 在线观看国产精品日韩av| 久久精品精品电影网| 欧美人与性动交a欧美精品| 伊人久久免费视频| 伊人久久五月天| www.久久草.com| 在线日韩欧美视频| 久久综合伊人77777蜜臀| 国产亚洲成av人片在线观看桃| 欧美影院在线播放| 久久久伊人欧美| 亚洲大胆人体视频| 亚洲精品视频中文字幕| 欧美性猛交xxxx黑人| 久久国产一区二区三区| 国产精品aaaa| 日韩av电影手机在线| 在线免费观看羞羞视频一区二区| 亚洲成人精品久久| 国产精品欧美久久久| 国产综合视频在线观看| 亚洲free性xxxx护士白浆| 欧美成人在线免费| 国产精品久久国产精品99gif| 亚洲一区二区三区视频| 国产91成人video| 国产日韩av高清| 欧美性猛交xxxx黑人猛交| 777午夜精品福利在线观看| 91久久久在线| 91wwwcom在线观看| 久久久国产视频| 国产69精品久久久久9999| 欧美激情精品久久久久久| 欧美特级www| 日韩av在线一区二区| 日韩免费av一区二区| 2020欧美日韩在线视频| 亚洲加勒比久久88色综合| 日韩在线视频二区| 欧美第一淫aaasss性| 欧美最猛性xxxxx亚洲精品| 日韩hd视频在线观看| 成人午夜激情免费视频| 色综合91久久精品中文字幕| 成人自拍性视频| 欧美精品videos性欧美| 综合激情国产一区| 欧美理论电影在线观看| 亚洲自拍高清视频网站| 美女视频黄免费的亚洲男人天堂| 日韩在线小视频| 亚洲欧美激情在线视频| 国产男女猛烈无遮挡91| 国产深夜精品福利| 欧美床上激情在线观看| 亚洲va欧美va国产综合久久| 欧美激情亚洲自拍| 国产精品69av| 亚洲美女激情视频| 久久免费精品日本久久中文字幕| 欧美亚洲免费电影| 欲色天天网综合久久| 精品久久香蕉国产线看观看亚洲| 欧美情侣性视频| 久久人人爽亚洲精品天堂| 欧美成人免费播放| 国内成人精品一区| 国产精品免费福利| 日韩高清电影免费观看完整| 亚洲第一精品电影| 亚洲娇小xxxx欧美娇小| 欧洲成人在线视频| 欧美精品制服第一页| 亚洲美女性生活视频| 久久精彩免费视频| 日韩一区二区福利| 国产精品爽爽爽| 亚洲欧美福利视频| 欧美日韩精品在线视频| 在线国产精品播放| 欧美成人免费在线观看| 亚洲自拍小视频免费观看| 精品免费在线视频| 日韩麻豆第一页| 青青青国产精品一区二区| 亚洲国内精品视频| 日韩一区视频在线| 中文字幕日韩在线视频| 中文字幕日韩欧美| 国产精品丝袜久久久久久不卡| 国产精品白丝av嫩草影院| 日本精品久久中文字幕佐佐木| 欧美大尺度激情区在线播放| 久久久www成人免费精品张筱雨| 成人黄色网免费| 色悠久久久久综合先锋影音下载| 国产亚洲在线播放| 一本一本久久a久久精品牛牛影视| 久久九九热免费视频| 在线播放日韩av| 久久色免费在线视频| 成人深夜直播免费观看| 色悠悠久久88| 国产欧美日韩免费看aⅴ视频| 亚洲黄色www| 久久夜色精品国产欧美乱| 亚洲www在线观看| 国产婷婷色综合av蜜臀av| 欧美激情a∨在线视频播放| 中文字幕免费精品一区高清| 亚洲精品ady| 欧美日韩国产成人在线观看| 国产精品高潮呻吟视频| 精品亚洲国产成av人片传媒| 韩国精品美女www爽爽爽视频| 亚洲激情自拍图| 欧美日产国产成人免费图片| 欧美激情亚洲一区| 亚洲成人精品视频| 国产视频在线一区二区| 在线播放日韩欧美| 亚洲专区在线视频| 欧美在线观看网址综合| 色偷偷噜噜噜亚洲男人| 国产精品黄色影片导航在线观看| 理论片在线不卡免费观看| 国产在线a不卡| 久久中文久久字幕| 国产精品久久久91| 国产热re99久久6国产精品| 奇门遁甲1982国语版免费观看高清|