一部のJSが動作しないように少し助けてもらいました。以下のように、JavaScriptを渡して終了URLの宛先に影響を与えることができるようにしたいと思います。終了宛先は(delete-page.php?id=1
)
<a href ="javascript:deletemessage('id=1')">Delete Page </a>
<script type="text/javascript">
function deletemessage(url) {
$.msgbox("Are you Sure you would like to delete this page", {
type: "confirm",
buttons: [{
type: "submit",
value: "No"
}, {
type: "submit",
value: "Yes"
}]
}, function(result) {
if (result == "Yes") {
window.location.href = "delete-page.php(URL)";
}
});
}
</script>
どんな助けでも大歓迎です!