問題:
- 網址無法進入:
- https://access.line.me/oauth2/v2.1/...
- 程式中是使用javascript 進行導頁。
- 原因是因為Chrome外掛中有防毒擋掉導頁。(如小紅傘 chrome plugin)
- 移除plugin(或停用)。
- 或是直接使用連結,不透過javascript處理url。
問題:
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
var bloggerid=$("[itemprop=blogId]:first").attr('content');
console.log(bloggerid);
</script>
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 = '禁止貼上';
}
參考:
參考: