这是我的java脚本代码
$(document).ready(function () {
var getOption = $("input:radio[name='profit']");
getOption.click(function(){
if (this.value == 'amount') {
$('.graph_per').hide();
$('.graph_amt').show();
}
else if(this.value == 'percentage') {
$('.graph_amt').hide();
$('.graph_per').show();
}
});
var get="";
$.ajax({
type: 'POST',
url: 'localhost/testp/admin.php',
data: {get:"amount"},
success: function( response ) {
console.log( response );
}
});
});
当我在 php 中发布 get 变量时,它显示错误:未定义索引“get”。如何修复它&我的这个 js 文件存储在不同的文件夹中。php文件
<?php
echo $_POST["get"];
?>