我正在尝试调用java脚本函数,当用户单击锚链接时,该函数会将修改后的警告框显示为警告
在这种情况下,我使用$_REQUEST['id']
作为参考来检查我的链接是否已被点击
PHP
if(isset($_REQUEST['id'])) {
// how can I call my function which will display my modified alert box here?
// is it possible?
}
使用Javascript:
<script>
function myFunction() {
$("#dialog-confirm").dialog({
resizable: false,
height: 300,
width: 700,
modal: true,
buttons: {
"Upload": function() {
document.forms["form1"].submit();
$(this).dialog("close");
},
Cancel: function() {
window.location.href = "uploadCSV.php";
$(this).dialog("close");
}
}
});
}
</script>
主播链接:
echo '<a name="' . $row['Id'] . '"><tr class="even pointer"><td class="a-center ">
答案 0 :(得分:0)
您可以这样编写代码。
<?php
if(isset($_REQUEST['id'])) {
// how can I call my function which will display my modified alert box here?
// is it possible?
?>
<script> myFunction(); </script>
<?php
}
?>
由于 阿米特