如何使用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
- 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
我想知道如何在此选项卡中的ajaxbtn.php的“include”网址中传递相册ID# 到实际请求URL的文件 p>
- home.php:
HTML:
&lt; a href =“javascript:;” id =“album”class =“ajax_tab”&gt; ALBUM ID#22&lt; / a&gt; code> li> ol>
JAVASCRIPT: p> \ n
$(document).ready(function GoAlbum(){ // alert(“pageload event fired!”); $ .ajax({ url:'assets / ajaxbtn.php ', 键入:'POST', data:{ action:'album' }, success:function(response){ // alert(response); $(“# content“)。html(response); $(”#loading_image“)。hide(); window.history.pushState(”object or string“,”Title“,”/ album“); } }); code> pre>
现在我有另外一个处理标签操作的文件 p>
ajaxbtn.php:
if($ _ POST ['action'] =='album'){ include(“http://gypsychristiannetwork.com/assets/album.php?AlbumID= 22“); } code> pre>
这将是album.php的内容 p>
if( isset($ _ GET ['AlbumID'])){ $ AlbumID = $ _GET ['AlbumID']; echo'&lt; h1&gt; TEST:'。$ AlbumID。'&lt ; / H1&gt;'; } code> pre>
正如您所见,“id”已被html链接使用,并且href设置为javascript
所以我不确定要找到解决方案的方向 p>
感谢您的帮助 p> DIV>
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"),
},