希望我能正确地问这个问题,因为我知道我想要它做什么,但似乎无法从搜索中找到任何答案。
我有一个 func.php 页面,其中有我的所有功能,我希望 ajax 使用该页面中的一个功能。
函数.php
function toptable()
{
echo"something happens in here";
}
索引.php
<?php include 'func.php'; ?>
<script type="text/javascript">
function check_username() {
uname=document.getElementById("username").value;
var params = "user_id="+uname;
var url = "topoftable()";
$.ajax({
type: 'POST',
url: url,
dataType: 'html',
data: params,
beforeSend: function() {
document.getElementById("right").innerHTML= 'checking' ;
},
complete: function() {
},
success: function(html) {
document.getElementById("right").innerHTML= html ;
}
});
}
</script>
说得通?