這裏是我的javaScript函數,它顯示一個對話框,但只有當它在某個div標記中調用的類#dialog
時才顯示。將PHP變量傳遞給Java腳本函數參數
<script>
$(function() {
$("#dialog").dialog({
modal: true,
buttons: {
Ok: function() {
$(this).dialog("close");
}
}
});
});
</script>
</head>
<body>
<div id="dialog" title="Download complete">
<p>
Your registration is complete, press ok to return to the previous page.
</p>
</div>
</body>
我想要做其顯示來自一個PHP字符串變量這樣的消息是什麼:
$message="Your registration is complete, press ok to return to the previous page.";
而關於JS功能改變#dialog
到PHP變量$message
。
我已經嘗試了幾種方法,它很混亂。請給我一個手。
將變量保存在隱藏字段中,並在需要時使用javascript獲取該值。 – RRK