editor.addShortcut(
'meta+v', '純文字貼上', function (e) {
editor.insertContent('<b>請勿使用Ctrl+V貼上</b>');//寫提醒文字
editor.execCommand('mcePasteText',false); //不處理貼上的文字
});
editor.addShortcut(
'meta+v', '純文字貼上', function (e) {
editor.insertContent('<b>請勿使用Ctrl+V貼上</b>');//寫提醒文字
editor.execCommand('mcePasteText',false); //不處理貼上的文字
});
plugins: [
"advlist autolink lists link image charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu paste"
],
paste_preprocess: function (plugin, args) {
console.log("Attempted to paste: ", args.content);
// replace copied text with empty string
args.content = '禁止貼上';
}
參考:
參考:
參考:
1.先建立連線
2.資料表語法
CREATE EXTERNAL TABLE [dbo].[MyTable]
(
[Id] [varchar](64) NULL,
[Name] [varchar](64) NULL
)
WITH (DATA_SOURCE = [MyDataSource])
GO
參考: