我在我的PHP頁面有一個按鈕:一個變量傳遞給JavaScript函數
<button id="myButton">Delete me</button>
,並在頁面我有我想傳遞給一個JavaScript函數的變量,這是我的JS代碼:
<script>
$(function() {
$('#myButton').confirmOn('click', function(e, confirmed){
if(confirmed) {
//Here I'll use the variable
}
})
});
</script>
我該怎麼做?
你能提供關於變量的更多細節嗎?例如。你可以在哪裏訪問它? –
你想要什麼? PHP變量爲Javascript? – Cilan