我有一個小問題,我猜在我看來聽起來很愚蠢。其實我也該代碼javascript button ajax和php
<script type="text/javascript">
$(document).ready(function(){
var email_value = prompt('Please enter your email address');
if(email_value !== null){
//post the field with ajax
$.ajax({
url: '="/new/cfolder.php',
type: 'POST',
dataType: 'text',
data: {data : email_value},
success: function(response){
//do anything with the response
console.log(response);
}
});
}
});
</script>
我想將其鏈接到我的按鈕,這是否
<form action="/new/cfolder.php" method="post">
</font><input type="submit" value="Create Vdisk" class="myButton6" onClick="function()">
<br></form>
它實際上是有可能做到這一點?謝謝你的回答。
我做了什麼你已經做了,但它只是刷新我的網頁。 –