dtnpf35197 2016-09-17 20:24
浏览 46
已采纳

如何使用html和javascript获取并传递链接参数

i am wondering how to i pass an album ID# in the "include" url from ajaxbtn.php in this tab to the file that actually requests the URL

  1. home.php: HTML:<a href="javascript:;" id="album" class="ajax_tab">ALBUM ID #22</a>

JAVASCRIPT:

$( document ).ready(function GoAlbum() {
  //alert("pageload event fired!");
    $.ajax({
        url: 'assets/ajaxbtn.php',
        type: 'POST',
        data: {
        action:'album'
        },
        success: function(response){
            //alert(response);
            $("#content").html(response);
            $("#loading_image").hide();
            window.history.pushState("object or string", "Title", "/album");
        }
    }); 

now i have another files that handles the actions of the tabs

ajaxbtn.php:

if($_POST['action'] == 'album'){
   include("http://gypsychristiannetwork.com/assets/album.php?AlbumID=22");
    }

And this would be the content for album.php

if(isset($_GET['AlbumID'])){
    $AlbumID = $_GET['AlbumID'];
        echo '<h1>TEST: '.$AlbumID.'</H1>';
    }

as you can see here "id" is already being used by the html link, and href is set to javascript

so i'm not exactly sure what direction to go into to find a resolution to this

Thank you for your help

  • 写回答

1条回答 默认 最新

  • doujiao3998 2016-09-17 20:34
    关注

    In your ajax call, you could add:

    id: 22
    

    So it would be:

    $.ajax({
            url: 'assets/ajaxbtn.php',
            type: 'POST',
            data: {
                action:'album',
                id: 22,
            },
            success: function(response){
                //alert(response);
                $("#content").html(response);
                $("#loading_image").hide();
                window.history.pushState("object or string", "Title", "/album");
            }
    

    And then in the PHP file:

    if($_POST['action'] == 'album'){
       include("http://gypsychristiannetwork.com/assets/album.php?AlbumID=".$_POST['id']);
    }
    

    And if you need the id coming from the HTML part:

    <a href="javascript:;" id="album" data-album-id="22" class="ajax_tab">ALBUM ID #22</a>
    

    And then, in the ajax call:

    data: {
        action:'album',
        id: $(this).attr("data-album-id"),
    },
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统