我有一个MySQL数据库,可存储我上传的所有音乐。
我有一个链接,列出该艺术家的所有上传曲目。
艺术家 - 曲目名称 - 状态[删除]
现在[删除]按钮已链接到song_delete.php?id=<?php echo $row['song_id']; ?>
。
我想要将确认页面(song_delete)加载到模态中。
这是我的模态HTML。
<div id="deleteMusic" class="reveal-modal medium">
<h2>Request to delete<span style="color:#F7D745;"> <?php echo $row['title']; ?></h2>
<p class="lead">Are you sure you want to delete this song? Please allow 2 full business weeks for deletion.</p>
<span style="float:right;"><a href="#" class="button close-reveal-modal cancelbtn">Cancel</a>
<a href="#" class="button submitbtn">Submit</a> </span>
<a class="close-reveal-modal">×</a>
</div>
答案 0 :(得分:0)
以下内容应该符合您的要求 在这里找到:http://foundation.zurb.com/docs/components/reveal.html
使用Ajax内容触发显示模式
<button data-reveal-id="myModal" data-reveal-ajax="http://server/song_delete.php">
Click Me and open Modal for confirmation
</button>
或
<a href="http://server/song_delete.php" data-reveal-id="myModal" data-reveal-ajax="true">
Click Me and open Modal for confirmation
</a>