私はjqueryのにパスデータをしようとしているonclick
キャッチされないでSyntaxError:予期しないトークン} jQueryのにパスデータをしようとして変数
経由jqueryの機能があります:
function handleit(cId, anotherId) {
var campaingID = cId;
var another = anotherId;
var post = "action=remove&campaign_id=" + campaingID + "&anotherid=" + another;
$.ajax({
type: "post",
url: "ajax/phphandler.php",
data: post,
cache: false,
success: function(html) {
$('#ready').html(html);
}
});
return false;
}
とonclick
コード
<td><input class="btn btn-default" type="submit" data='.$row2['campaign_id'].' value="submit" onclick="return handleit("'.$row2['campaign_id'].'","test")"></td>
レンダリングhtml
<td><input class="btn btn-default" type="submit" data=43 value="submit" onclick="return handleit(" 43","test")"></td>
をHTMLは次のように見てする必要がありますでしょうか? 'ajax/phphandler.php'は何を返しますか? –
これは、とにかくデバッガの使用に関する質問ですので、それは話題にはなりません。 – nicael
実際のレンダリングされたHTMLは、どんなサーバー側のものでもなく、ポストしてください。これは、ボタンのdoesntのは、POSTを送信したり、何種類=「送信」データのhtml<入力クラス=「BTN BTN-デフォルト」がレンダリングされる@squint jqueryの –