gpt4 book ai didi

php - 如何组合一个 id div 和一个 php id

转载 作者:行者123 更新时间:2023-11-30 21:50:52 24 4
gpt4 key购买 nike

我不知道 PHP 和 ID DIV 的规范。这是我的问题:

我可以同时放入一个名为 #modalID DIV 和一个 ID PHP RETURN 吗?

while ( $contents_print = mysqli_fetch_array( $req_print ) ) {  
echo'
<div class="row print">
<div class="col s12 m4">
<div class="card">
<div class="card-image">
<img data-tags="print" class="activator" src="../00_sources/images/upload/pic_min/' . $contents_print[ 'pic_min' ] . '" alt="' . $contents_print[ 'pic_min' ] . '">
<a href="#modal" class="btn-floating halfway-fab waves-effect waves-light primary-color-text modal-trigger"><i class="material-icons">add</i></a>
</div>
<div class="card-content">
<span class="card-title">'.$contents_print['nom_projet'].'</span>
<p>'.$contents_print['detail_projet'].'</p>
</div>
</div>
</div>
</div>';
}

这是我的 jquery ajax 代码:

$(document).ready(function(){
$('.materialboxed').materialbox();
});

$( document ).ready( function () {
$.ajax( {
url: 'core/libs/contents-services.php?action=getFilterContent&id=3',
type: "get",
dataType: "html",
success: function ( reponse ) {
$( '#modal' ).html( reponse );
}
} );

// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered
$( '.modal' ).modal();
} );

在我的 ajax 代码中:行 url: 'core/libs/contents-services.php?action=getFilterContent&id=3', 我必须使用来自 php/mysql 请求的 id

我想做一个这样的链接:url: 'core/libs/contents-services.php?action=getFilterContent&id='.$_GET['id'].',

我希望我是清楚的

谢谢你的帮助

http://portfolio.rabahbook.fr查看我工作的站点

最佳答案

据我了解,您从响应中获取了一个 ID,并试图将其分配给 ajax href。如果是这种情况,您可以执行以下操作(请注意 url_id 变量。):

var url_id =3;

$( document ).ready( function () {
$.ajax( {
url: 'core/libs/contents-services.php?action=getFilterContent&id='+url_id,
type: "get",
dataType: "html",
success: function ( reponse ) {
$( '#modal' ).html( reponse );
url_id = response.url_id;/// get url id from response and assign it to
//your href
}
});

// the "href" attribute of the modal trigger must specify the modal ID
//that wants to be triggered
$( '.modal' ).modal();
} );
</script>

关于php - 如何组合一个 id div 和一个 php id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47328126/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com