我正在使用jQuery和JavaScript,我需要在JavaScript代碼中調用jQuery函數。用JavaScript調用jQuery函數
我的jQuery代碼:
function display(id){
$.ajax({
type:'POST',
url: 'ajax.php',
data:'id='+id ,
success: function(data){
$("#response").html(data);
}//success
}); //Ajax
//Here I need to return the ajax.php salary
//return ?
}
我的ajax.php文件有:
<?php
session_start();
....
echo "$salary";
?>
我的JavaScript函數有:
my.js
function showName(){
var id = 12;
var a = display(id); //Here I need to call the jQuery function display().
}
下如何調用內部的JavaScript jQuery函數代碼以及如何將PHP值返回給jQuery?
該行 $(「#response」)。html(data); 是不是應該是 $(「#response」)。html(response); ??? – AceMark 2010-03-29 14:52:31