jQueryとタグを更新せずにjQueryを介してURL文字列にIDを渡したい#
ので、php$_get['ID']
関数を介してIDを取得できます。
しかし、問題は
- を使用する
#
と、ページは更新されませんでしたが、PHP は URL から ID を取得しました。 - # を使用しない場合、php は ID を選択しますが、ページは更新されます。
ページを更新せずに id を php に渡したいです。
//javascript
function com(id) {
location.href = '#?ID=id'; //by this way way,page doesn't refresh, ID appears in the url string but ID is not picked by PHP as # is there
// location.href = '?ID=id'; this way way, ID appears in the url string , ID is also picked by PHP as # is there.But page get refreshed.
$.ajax({
type: "Post",
url: "getdata.php",
async: true,
cache: false,
success: function(data) {},
});
}
//php for getdata.php
<?php echo $_GET['ID']; ?>