echo "<td><a onclick=\"confirm('Are you sure you want to permanently delete this post?');\" href='posts.php?id=".$res['id']."'>view</a></td>";

Generated with PHP, the confirm isn't popping up.. What am I doing wrong? Thanks for lookin.

有帮助吗?

解决方案

use

onclick="return confirm('Are you sure you want to permanently delete this post?');"

其他提示

Try:

echo "<td><a onclick='return confirm('Are you sure you want to permanently delete this post?');' href='posts.php?id=".$res['id']."'>view</a>";

use instead:

echo "<td><a onclick="return confirm('Are you sure you want to permanently delete this post?');" href="posts.php?id=".$res['id']."'>view</a></td>";

confirm return true or false

Add return false or true to avoid further execution

    if(Confirm())
           return true;
        else
          return false;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top