php和js交互一例

- 中國WEB開發者網絡 (http://www.webasp.net)
-- 技術教程 (http://www.webasp.net/article/)
--- php和js交互一例 (http://www.webasp.net/article/16/15105.htm)
-- 作者:未知
-- 發佈日期: 2004-11-25
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Untitled</title>
<script language="JavaScript">
<!--
function rec_delete(message){
return confirm(message);
}
//-->
</script>
</head>
<body>
<?php
$myrow[guest_name]="asdf"";
$myrow[guest_name]="asdf'";
$guest_name=addslashes($myrow[guest_name]);
//$guest_name=str2js($myrow[guest_name],"'");
$dele_mess="真的要刪除這個留言嗎?\n留言姓名:$guest_name($myrow[guest_ip])"."\n留言時間:$myrow[guest_time]";
echo "<script>";
echo "delete_mess="$dele_mess"";
echo "</script>";
?>
<a href="<?php echo "$PHP_SELF?opt=delete"; ?>" onClick='return rec_delete(delete_mess)'>刪除</a>
</body>
</html>
 

webasp.net