Warning: POST Content-Length of 10025724 bytes exceeds the limit of 8388608 bytes in Unknown on line 0 アップロードしようとしたファイルが大きすぎるようです。この制限に関する対策については ドキュメント をご覧ください。
# アップロードできるファイルサイズを増やす upload_max_filesize = 50M # POST で送信できるデータサイズ post_max_size = 50M
body#tinymce.wp-editor { background-color: #FFFFFF; padding: 55px 12px 50px 12px !important; width: 642px; }
Options +FollowSymLinks ↓ # Options +FollowSymLink
if(function_exists('add_theme_support')) { add_theme_support('post-thumbnails'); }
// ここでは読み込まれない var webview = $('<webview src="http://yokano-jp.blogspot.jp/"></webview>'); webview.on('loadstop', function() { console.log('loaded'); }); // ここではじめて読み込まれる $('body').append(webview);
<webview src="http://hogehoge.com/" style="height: 0px; width: 0px;"></webview>
<webview src="http://hogehoge.com/" style="display: none;"></webview>
// .click() を使う場合 $('#my_element').click(); // .trigger() を使う場合 $('#my_element').trigger('click');
// DOM の click() を呼び出す $('#my_element').get(0).click();
var webview = $('#my_webview'); webview.on('consolemessage', function(e) { var message = e.originalEvent.message; try { var datas = JSON.parse(message); console.log(' からデータを受け取りました', datas); } catch(e) { console.log(' からログが発行されました', message); } });
var result = { id: 1, value: 1234 }; var json = JSON.stringify(result); console.log(json);
// 検索ボタン(をクリックする場合) var searchButton = document.querySelector('input[name=search]'); var event = document.createEvent('MouseEvents'); event.initMouseEvent( 'click', true, true, window, 0, 0, 0, $(searchButton).position().left + 15, // X = 15 $(searchButton).position().top + 15, // Y = 15 false, false, false, false, 0, null ); searchButton.dispatchEvent(event);
<webview id="foo" src="http://www.google.com/" style="width:640px; height:480px" partition="persist:googlepluswidgets"></webview>
HTML <div id="my-div">Hello <strong>World !</strong></div>
$('#my-div').html(); // Hello <strong>World !</strong> $('#my-div').text(); // Hello World !
/* CSS */ #my-webview { display: hidden; }
<!-- HTML --> <webview id="my-webview" src="http://target-site.com/login" partition="persist:googlepluswidgets"></webview>
/* JavaScript(jQuery) */ $('#my-webview').on('loadstop', function() { var doc = $(this.contentWindow.document); doc.find('#login-id').val('my_id'); doc.find('#login-pass').val('my_pass'); doc.find('#login-submit').click(); });
var webview = $('#my-webview'); // webview 内で console.log() が使用されると consolemessage イベントが発生 webview.on('consolemessage', function(e) { // 引数内の originalEvent.message にメッセージが渡される console.log(e.originalEvent.message); });