この Ajax ポスト コードを使用して、blogsky ブログ ホスティングのブログに投稿を送信します。
var result = null;
var scriptUrl = "http://www.blogsky.com/cp/weblog/post.bs";
$.ajax({
url: scriptUrl,
type: 'post',
data: ({txtTitle : 'BEHZAD', txtText : 'BEHZAD' , hidAction : 'Publish'}),
dataType: 'jsonp',
jsonp: 'jsonp_callback',
async: false,
success: function(data) {
alert("success");
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
document.write(textStatus+" - "+errorThrown);
}
});
と ブログ ページ cotain この フォーム . ブログのホスティングは私のものではなく、送信先の郵便番号を変更できません。
<form action="http://www.blogsky.com/cp/weblog/post.bs" method="post">
<table id="frmposttb">
<tr>
<td colspan="2"><input type="text" name="txtTitle" value="" style="width:320px;" maxlength="64" onkeypress="FKeyPress(event)" onkeydown="FKeyDown(event)" /></td>
</tr>
<tr>
<td colspan="2" class="editor">
<textarea id="txtText" name="txtText" rows="1" cols="1" style="width: 545px; height: 290px"></textarea>
</td>
</tr>
<tr>
<input type="hidden" name="hidAction" value="Publish" />
<td class="tdl"><input type="submit" value="SEND"></td>
</tr>
</table>
しかし、ページをロードするとこのエラーが発生します
parsererror - エラー: jQuery18203252281643505811_1367758980965 は呼び出されませんでした
およびページのロードとリロード。私は他のdataTypeを使用していますが、それでもエラーです
dataType: 'jsonp'
dataType: 'sonp'
dataType: 'html'
dataType: '....'