我想从php代码中调用javascript函数 myfunction()。代码如下:
<script>
function myfunction() {
var r = confirm("Are you sure ? ");
if (r == true) {
//delete file from database with id b_id
}
<?php header("Refresh:0"); ?>
}
</script>
我想从这个php代码调用js函数。
<?php
while(//fetched database elements one by one)
{
//$b_id fetched from database.
echo "<button class='w3-display-topright pe-7s-close-circle w3-xxlarge w3-button' onclick="myfunction($b_id);"></button>
}
?>
答案 0 :(得分:1)
编写另一个PHP脚本,按ID删除条目并从您的网页中调用它。即,
<?
while (...) {
echo "<button onclick='deleteEntry($id)'></button>"
}
?>
你的JS是这样的:
function deleteEntry(id) {
if (confirm('Are you sure?')) {
fetch('myserver/delete_entry.php?id=' + id);
}
}
当然,你必须写delete_entry.php
。