如何在带有href的Bootstrap Modal中使用GET方法?

时间:2018-07-06 17:02:57

标签: javascript php jquery get bootstrap-modal

每次我尝试执行此操作时,URL都会显​​示为:source script_A.sh source script_B.sh source script_C.sh **wait until cloud job has finished** source script_D.sh 。 ID为空。这是我所做的:

?id=

对于模式:

echo '<a  href="#small?id="'.$row['id'].'"" id="smallbtn" data-toggle="modal" data-modal="small">';

还发生了什么事,当我单击href时没有任何显示。我认为这与我如何设置上面的模态代码有关。当我检查其他类似问题时,我读到PHP GET方法不是动态的,因此也可能是问题所在。有什么办法可以解决这个问题?

更新:URL正确显示,但模式不显示。

3 个答案:

答案 0 :(得分:0)

<?php 
$id= $row['id'];
 echo '<a  href="small.php?id='.$id.'" id="smallbtn" data-toggle="modal" data-modal="small">Modal</a>';
 ?>
//OR
echo '<a  href="small.php?id='.$row['id'].'" id="smallbtn" data-toggle="modal" data-modal="small">modal</a>';

答案 1 :(得分:0)

回显“模态”;

您可以播种母猪,但我认为#small是来自模态而不是网址的ID

答案 2 :(得分:0)

//this is the link
<?php
echo '<a  href="http://www.website.com/page.html#small?id='.$row['id'].'" id="smallbtn" data-toggle="modal" data-modal="small">modal</a>';
?>
//and this have to be puted in file with modal


$(document).ready(function() {

  if(window.location.href.indexOf('#small') != -1) {
    $('#small').modal('show');
  }

});