item_num
簡単な質問: insert_profile.php に送信してから、insert_profile.php をロードし、そこにエコーしたいだけですitem_num
。動いていない!「insert_profile.php」はロードされますが、データが取得されません。
それは私の問題data:
ですか?私も試しdata: {item_num: item_num}
ました。これが重複している場合は申し訳ありませんが、私が見たすべての例を試しましたが、どれも機能していません。にもあり得ると思いますsuccess:
http://api.jquery.com/jQuery.ajax/も見ました。
Javascript/HTML
<script>
$('.prof_wl_btn').click(function() {
$(this).removeClass('prof_wl_btn');
$(this).addClass('prof_wl_btn_added');
var item_num = this.id;
alert('item id ' + item_num); //*this will alert correctly*
$.ajax({
type: "POST",
url:'insert_profile.php',
data: "item_num"+item_num,
success: location.href = "insert_profile.php" //*this will load**
});
});
</script>
PHP
<?php
$s_n = $_REQUEST['item_num'];
echo $s_n;
?>