{"id":7143,"date":"2026-08-09T00:10:17","date_gmt":"2026-08-08T15:10:17","guid":{"rendered":"https:\/\/taitan916.info\/blog\/?p=7143"},"modified":"2026-08-09T00:14:48","modified_gmt":"2026-08-08T15:14:48","slug":"post-7143","status":"publish","type":"post","link":"https:\/\/taitan916.info\/blog\/archives\/7143","title":{"rendered":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5"},"content":{"rendered":"<p>summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>summernote\u306b\u3064\u3044\u3066<\/h2>\n<p>summernote\u81ea\u4f53\u306e\u4f7f\u7528\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f<a href=\"https:\/\/taitan916.info\/blog\/archives\/7140\" target=\"_blank\" rel=\"noopener\">\u904e\u53bb\u8a18\u4e8b<\/a>\u53c2\u7167\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>\u5bfe\u5fdc\u65b9\u6cd5<\/h2>\n<h3>WYSIWYG\u30a8\u30c7\u30a3\u30bf\u5074(index.php)<\/h3>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;form action=\".\/\" method=\"post\" enctype=\"multipart\/form-data\"&gt;\r\n    &lt;div&gt;\r\n        &lt;label&gt;\r\n            &lt;input type=\"radio\" value=\"on\" name=\"switching\" checked&gt;On\r\n        &lt;\/label&gt;\r\n        &lt;label&gt;\r\n            &lt;input type=\"radio\" value=\"off\" name=\"switching\"&gt;Off\r\n        &lt;\/label&gt;\r\n    &lt;\/div&gt;\r\n    &lt;textarea name=\"editor\" id=\"editor\"&gt;&lt;\/textarea&gt;&lt;br&gt;\r\n    &lt;input type=\"submit\" value=\"\u9001\u4fe1\"&gt;\r\n&lt;\/form&gt;\r\n\r\n&lt;script type=\"text\/javascript\" src=\"https:\/\/code.jquery.com\/jquery-3.7.1.min.js\"&gt;&lt;\/script&gt;\r\n&lt;link href=\"https:\/\/cdn.jsdelivr.net\/npm\/summernote@0.8.18\/dist\/summernote-lite.min.css\" rel=\"stylesheet\"&gt;\r\n&lt;script src=\"https:\/\/cdn.jsdelivr.net\/npm\/summernote@0.8.20\/dist\/summernote-lite.min.js\"&gt;&lt;\/script&gt;\r\n&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/summernote\/0.8.20\/lang\/summernote-ja-JP.min.js\" type=\"text\/javascript\"&gt;&lt;\/script&gt;\r\n\r\n&lt;script&gt;\r\n$(function(){\r\n    const selector = '#editor';\r\n\r\n    \/\/summernote\u306e\u958b\u59cb\r\n    startSummernote(selector);\r\n\r\n    \/\/summernote\u306eOn \/ Off\u5207\u308a\u66ff\u3048\r\n    $('input[name=\"switching\"]').on('change', function(){\r\n        if( $(this).val() == 'on' ){\r\n\r\n            \/\/summernote\u306e\u958b\u59cb\r\n            startSummernote(selector);\r\n        }else{\r\n\r\n            \/\/\u7a7a\u306e\u5834\u5408\u306fsummernote\u5074\u3067&lt;p&gt;&lt;br&gt;&lt;\/p&gt;\u304c\u633f\u5165\u3055\u308c\u308b\u306e\u3067\u524a\u9664\r\n            if( $(selector).summernote('code') == '&lt;p&gt;&lt;br&gt;&lt;\/p&gt;' ){\r\n                $(selector).val('');\r\n            }\r\n\r\n            \/\/summernote\u306e\u7834\u68c4\r\n            $(selector).summernote('destroy');\r\n        }\r\n    });\r\n\r\n    \/\/summernote\u306e\u958b\u59cb\u7528\u95a2\u6570\r\n    function startSummernote( selector ){\r\n        if( !selector ) return false;\r\n\r\n        \/\/\u30aa\u30d7\u30b7\u30e7\u30f3\u8a2d\u5b9a\r\n        const summernote_option = {\r\n            lang: 'ja-JP',\r\n            height: 300,\r\n            focus: true,\r\n            callbacks: {\r\n                onImageUpload: function( file ){\r\n                    uploadImg( file[0], selector );\r\n                },\r\n            }\r\n        }\r\n\r\n        $(selector)\r\n            \/\/\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u521d\u671f\u5316\r\n            .summernote(summernote_option)\r\n\r\n            \/\/\u30a8\u30f3\u30bf\u30fc\u30af\u30ea\u30c3\u30af\u6642\u306b&lt;br&gt;\u30bf\u30b0\u3092\u633f\u5165\r\n            .on('summernote.enter',\r\n                function(we, e){\r\n                    $(this).summernote('pasteHTML', '&lt;br&gt;&amp;ZeroWidthSpace;');\r\n                    e.preventDefault();\r\n                }\r\n            );\r\n    }\r\n\r\n    function uploadImg( file, selector ){\r\n\r\n        if( !file || !selector ){\r\n            alert('\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002');\r\n            return false;\r\n        }\r\n\r\n        if( !file.type.match(\/^image\/) ){\r\n            alert('\u753b\u50cf\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044');\r\n            return false;\r\n        }\r\n\r\n        const limit_size = 5;\r\n        if( file.size &gt; limit_size * 1024 * 1024 ){\r\n            alert(`\u753b\u50cf\u30b5\u30a4\u30ba\u306f${limit_size}MB\u307e\u3067\u3067\u3059`);\r\n            return false;\r\n        }\r\n\r\n        data = new FormData();\r\n        data.append('file', file);\r\n        $.ajax({\r\n            data: data,\r\n            type: 'POST',\r\n            url: '.\/upload.php',\r\n            cache: false,\r\n            contentType: false,\r\n            processData: false,\r\n        }).done(function(data, textStatus, jqXHR){\r\n            const result = JSON.parse(data);\r\n\r\n            if( !result.uploaded || !result.url ){\r\n                const msg = ( result.message ) ? result.message : '\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002';\r\n                return false;\r\n            }\r\n\r\n            $(selector).summernote('insertImage', result.url);\r\n        });\r\n    }\r\n\r\n});\r\n&lt;\/script&gt;<\/pre>\n<h3>\u753b\u50cf\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u5074(upload.php)<\/h3>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?php\r\ndo{\r\n\r\n    \/\/\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u5148\u306e\u30d1\u30b9\r\n    $path = '\/path\/to\/img\/';\r\n\r\n    \/\/\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u5148\u306eURL\r\n    $url = 'https:\/\/test.com\/path\/to\/img\/';\r\n\r\n    $img = $_FILES['file'];\r\n\r\n    if( !$img['size'] ){\r\n        $msg = '\u753b\u50cf\u304c\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002';\r\n        break;\r\n    }\r\n\r\n    $ext = $img['type'];\r\n    if ($ext == 'image\/jpeg' || $ext == 'image\/jpg') {\r\n        $tmp_ext = '.jpg';\r\n    } elseif ($ext == 'image\/png') {\r\n        $tmp_ext = '.png';\r\n    } elseif ($ext == 'image\/gif') {\r\n        $tmp_ext = '.gif';\r\n    } elseif ($ext == 'image\/webp') {\r\n        $tmp_ext = '.webp';\r\n    }\r\n\r\n    if( !$tmp_ext ){\r\n        $msg = 'jpg \/ png \/ gif \/ webp\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3044\u305f\u3060\u3051\u307e\u3059\u3002';\r\n        break;\r\n    }\r\n\r\n    $img_name = md5(uniqid(rand(), true)) . '_' . time();\r\n\r\n    if( !move_uploaded_file($img['tmp_name'], $path . $img_name . $tmp_ext) ){\r\n        $msg = '\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002';\r\n        break;\r\n    }\r\n\r\n    $img = $img_name . $tmp_ext;\r\n\r\n    if( $tmp_ext == '.jpg' ){\r\n        $old_img = imagecreatefromjpeg($path . $img);\r\n    }else if( $tmp_ext == '.png' ){\r\n        $old_img = imagecreatefrompng($path . $img);\r\n    }else{\r\n        break;\r\n    }\r\n    if( imagewebp($old_img, $path . $img_name . '.webp') ){\r\n        $img = $img_name . '.webp';\r\n    }\r\n\r\n    $flg = true;\r\n\r\n}while(0);\r\n\r\nif( $msg ){\r\n    $response = array(\r\n        'uploaded' =&gt; false,\r\n        'error' =&gt; array(\r\n            'message' =&gt; $msg,\r\n        ),\r\n    );\r\n}else{\r\n    $response = array(\r\n        'url' =&gt; $url . $img, \r\n        'uploaded' =&gt; true,\r\n    );\r\n}\r\n\r\necho json_encode($response);<\/pre>\n<h3>\u6ce8\u610f\u70b9<\/h3>\n<p>WebP\u5909\u63db\u306b\u306fPHP\u306eGD\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u5fc5\u8981\u306b\u306a\u308b\u3002\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0\u3060\u3068\u5927\u4e08\u592b\u3060\u3068\u601d\u3046\u304c\u3001VPS\u3068\u304b\u306e\u5834\u5408\u306f\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3002<\/p>\n<h3>\u753b\u50cf\u306estyle\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408<\/h3>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">$(selector).summernote('insertImage', result.url);<\/pre>\n<p>\u3067\u753b\u50cf\u3092\u51fa\u529b\u3059\u308b\u3068\u4ee5\u4e0b\u306e\u3088\u3046\u306bwidth\u304c\u81ea\u52d5\u3067\u6307\u5b9a\u3055\u308c\u308b\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;img style=\"width: 1050px;\" src=\"https:\/\/test.com\/img\/xxxxx.webp\"&gt;<\/pre>\n<p>\u3053\u308c\u3092\u30ec\u30b9\u30dd\u30f3\u30b7\u30d6\u5bfe\u5fdc\u3067max-width:100%\u306b\u3057\u305f\u3044\u7b49\u3001\u81ea\u8eab\u3067style\u3092\u6307\u5b9a\u3057\u305f\u3044\u3088\u3046\u306a\u5834\u5408\u306f\u4ee5\u4e0b\u3067\u51fa\u529b\u3059\u308b\u3068\u826f\u3044\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">$(selector).summernote('pasteHTML', `&lt;img src=\"${result.url}\" style=\"max-width: 100%;\"&gt;`);<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64 ... <\/p>\n","protected":false},"author":1,"featured_media":7139,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2,3,4],"tags":[86,91],"class_list":["post-7143","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-jquery","category-javascript","tag-wysiwyg","tag-image"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"taitan\"\/>\n\t<meta name=\"keywords\" content=\"wysiwyg,\u753b\u50cf\u95a2\u9023\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/taitan916.info\/blog\/archives\/7143\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\" \/>\n\t\t<meta property=\"og:description\" content=\"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/taitan916.info\/blog\/archives\/7143\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"2500\" \/>\n\t\t<meta property=\"og:image:height\" content=\"2499\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-08-08T15:10:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-08-08T15:14:48+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\" \/>\n\t\t<meta name=\"twitter:description\" content=\"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#article\",\"name\":\"summernote\\u3067\\u753b\\u50cf\\u9078\\u629e\\u6642\\u306b\\u30b5\\u30fc\\u30d0\\u306b\\u30d5\\u30a1\\u30a4\\u30eb\\u3092\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u65b9\\u6cd5 | \\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\",\"headline\":\"summernote\\u3067\\u753b\\u50cf\\u9078\\u629e\\u6642\\u306b\\u30b5\\u30fc\\u30d0\\u306b\\u30d5\\u30a1\\u30a4\\u30eb\\u3092\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u65b9\\u6cd5\",\"author\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/summernote.png\",\"width\":2500,\"height\":2499},\"datePublished\":\"2026-08-09T00:10:17+09:00\",\"dateModified\":\"2026-08-09T00:14:48+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#webpage\"},\"articleSection\":\"PHP, jQuery, JavaScript, WYSIWYG, \\u753b\\u50cf\\u95a2\\u9023\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog#listItem\",\"position\":1,\"name\":\"\\u30db\\u30fc\\u30e0\",\"item\":\"https:\\\/\\\/taitan916.info\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript#listItem\",\"name\":\"JavaScript\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript#listItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery#listItem\",\"name\":\"jQuery\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog#listItem\",\"name\":\"\\u30db\\u30fc\\u30e0\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery#listItem\",\"position\":3,\"name\":\"jQuery\",\"item\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#listItem\",\"name\":\"summernote\\u3067\\u753b\\u50cf\\u9078\\u629e\\u6642\\u306b\\u30b5\\u30fc\\u30d0\\u306b\\u30d5\\u30a1\\u30a4\\u30eb\\u3092\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u65b9\\u6cd5\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript#listItem\",\"name\":\"JavaScript\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#listItem\",\"position\":4,\"name\":\"summernote\\u3067\\u753b\\u50cf\\u9078\\u629e\\u6642\\u306b\\u30b5\\u30fc\\u30d0\\u306b\\u30d5\\u30a1\\u30a4\\u30eb\\u3092\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u65b9\\u6cd5\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery#listItem\",\"name\":\"jQuery\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#person\",\"name\":\"taitan\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916\",\"name\":\"taitan\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#webpage\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143\",\"name\":\"summernote\\u3067\\u753b\\u50cf\\u9078\\u629e\\u6642\\u306b\\u30b5\\u30fc\\u30d0\\u306b\\u30d5\\u30a1\\u30a4\\u30eb\\u3092\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3059\\u308b\\u65b9\\u6cd5 | \\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\",\"description\":\"summernote\\u3067\\u753b\\u50cf\\u3092\\u9078\\u629e\\u3057\\u305f\\u969b\\u3001\\u30d5\\u30a1\\u30a4\\u30eb\\u306f\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3055\\u308c\\u305aBase64\\u30a8\\u30f3\\u30b3\\u30fc\\u30c9\\u3055\\u308c\\u305f\\u5024\\u304c\\u30a8\\u30c7\\u30a3\\u30bf\\u5185\\u306b\\u633f\\u5165\\u3055\\u308c\\u308b\\u3002\\u3053\\u308c\\u3092\\u753b\\u50cf\\u30d5\\u30a1\\u30a4\\u30eb\\u304c\\u30b5\\u30fc\\u30d0\\u306b\\u30a2\\u30c3\\u30d7\\u30ed\\u30fc\\u30c9\\u3055\\u308c\\u308b\\u3088\\u3046\\u306b\\u3057\\u305f\\u3044\\u3002\\u307e\\u305f\\u3001\\u30b5\\u30a4\\u30ba\\u5727\\u7e2e\\u306e\\u305f\\u3081JPG \\\/ PNG\\u30d5\\u30a1\\u30a4\\u30eb\\u306e\\u5834\\u5408\\u306fWebP\\u753b\\u50cf\\u306b\\u5909\\u63db\\u3057\\u305f\\u3044\\u3002\\u4ee5\\u4e0b\\u306b\\u5bfe\\u5fdc\\u65b9\\u6cd5\\u3092\\u30e1\\u30e2\\u3002\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/summernote.png\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143\\\/#mainImage\",\"width\":2500,\"height\":2499},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/7143#mainImage\"},\"datePublished\":\"2026-08-09T00:10:17+09:00\",\"dateModified\":\"2026-08-09T00:14:48+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/\",\"name\":\"\\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\",\"description\":\"Web\\u30a8\\u30f3\\u30b8\\u30cb\\u30a2 \\\/ \\u30d7\\u30ed\\u30b0\\u30e9\\u30de\\u304c\\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\\u3002\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","description":"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002","canonical_url":"https:\/\/taitan916.info\/blog\/archives\/7143","robots":"max-image-preview:large","keywords":"wysiwyg,\u753b\u50cf\u95a2\u9023","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/taitan916.info\/blog\/archives\/7143#article","name":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","headline":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5","author":{"@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author"},"publisher":{"@id":"https:\/\/taitan916.info\/blog\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png","width":2500,"height":2499},"datePublished":"2026-08-09T00:10:17+09:00","dateModified":"2026-08-09T00:14:48+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/taitan916.info\/blog\/archives\/7143#webpage"},"isPartOf":{"@id":"https:\/\/taitan916.info\/blog\/archives\/7143#webpage"},"articleSection":"PHP, jQuery, JavaScript, WYSIWYG, \u753b\u50cf\u95a2\u9023"},{"@type":"BreadcrumbList","@id":"https:\/\/taitan916.info\/blog\/archives\/7143#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog#listItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/taitan916.info\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript#listItem","name":"JavaScript"}},{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript#listItem","position":2,"name":"JavaScript","item":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript","nextItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery#listItem","name":"jQuery"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog#listItem","name":"\u30db\u30fc\u30e0"}},{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery#listItem","position":3,"name":"jQuery","item":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery","nextItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/7143#listItem","name":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript#listItem","name":"JavaScript"}},{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/7143#listItem","position":4,"name":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5","previousItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery#listItem","name":"jQuery"}}]},{"@type":"Person","@id":"https:\/\/taitan916.info\/blog\/#person","name":"taitan"},{"@type":"Person","@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author","url":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916","name":"taitan"},{"@type":"WebPage","@id":"https:\/\/taitan916.info\/blog\/archives\/7143#webpage","url":"https:\/\/taitan916.info\/blog\/archives\/7143","name":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","description":"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002","inLanguage":"ja","isPartOf":{"@id":"https:\/\/taitan916.info\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/taitan916.info\/blog\/archives\/7143#breadcrumblist"},"author":{"@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author"},"creator":{"@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author"},"image":{"@type":"ImageObject","url":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png","@id":"https:\/\/taitan916.info\/blog\/archives\/7143\/#mainImage","width":2500,"height":2499},"primaryImageOfPage":{"@id":"https:\/\/taitan916.info\/blog\/archives\/7143#mainImage"},"datePublished":"2026-08-09T00:10:17+09:00","dateModified":"2026-08-09T00:14:48+09:00"},{"@type":"WebSite","@id":"https:\/\/taitan916.info\/blog\/#website","url":"https:\/\/taitan916.info\/blog\/","name":"\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","description":"Web\u30a8\u30f3\u30b8\u30cb\u30a2 \/ \u30d7\u30ed\u30b0\u30e9\u30de\u304c\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\u3002","inLanguage":"ja","publisher":{"@id":"https:\/\/taitan916.info\/blog\/#person"}}]},"og:locale":"ja_JP","og:site_name":"\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","og:type":"article","og:title":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","og:description":"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002","og:url":"https:\/\/taitan916.info\/blog\/archives\/7143","og:image":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png","og:image:secure_url":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png","og:image:width":2500,"og:image:height":2499,"article:published_time":"2026-08-08T15:10:17+00:00","article:modified_time":"2026-08-08T15:14:48+00:00","twitter:card":"summary","twitter:title":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","twitter:description":"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002","twitter:image":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2026\/08\/summernote.png"},"aioseo_meta_data":{"post_id":"7143","title":"#post_title | #site_title","description":"summernote\u3067\u753b\u50cf\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u30d5\u30a1\u30a4\u30eb\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305aBase64\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u5024\u304c\u30a8\u30c7\u30a3\u30bf\u5185\u306b\u633f\u5165\u3055\u308c\u308b\u3002\u3053\u308c\u3092\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u304c\u30b5\u30fc\u30d0\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3002\u307e\u305f\u3001\u30b5\u30a4\u30ba\u5727\u7e2e\u306e\u305f\u3081JPG \/ PNG\u30d5\u30a1\u30a4\u30eb\u306e\u5834\u5408\u306fWebP\u753b\u50cf\u306b\u5909\u63db\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-08-08 13:36:17","updated":"2026-08-08 15:41:24","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taitan916.info\/blog\" title=\"\u30db\u30fc\u30e0\">\u30db\u30fc\u30e0<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\" title=\"JavaScript\">JavaScript<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery\" title=\"jQuery\">jQuery<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tsummernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u30db\u30fc\u30e0","link":"https:\/\/taitan916.info\/blog"},{"label":"JavaScript","link":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript"},{"label":"jQuery","link":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery"},{"label":"summernote\u3067\u753b\u50cf\u9078\u629e\u6642\u306b\u30b5\u30fc\u30d0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5","link":"https:\/\/taitan916.info\/blog\/archives\/7143"}],"_links":{"self":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/7143","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/comments?post=7143"}],"version-history":[{"count":2,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/7143\/revisions"}],"predecessor-version":[{"id":7145,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/7143\/revisions\/7145"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media\/7139"}],"wp:attachment":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media?parent=7143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/categories?post=7143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/tags?post=7143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}