How can I call a CGI function within a javascript function? Such like th开发者_C百科is:
function jsFun()
{
//something that can call a CGI function
}
Try jQuery.
function jsFun() {
$.post(YOUR_CGI_URL, YOUR_PARAMS);
}
How can I call a CGI function within a javascript function? Such like th开发者_C百科is:
function jsFun()
{
//something that can call a CGI function
}
Try jQuery.
function jsFun() {
$.post(YOUR_CGI_URL, YOUR_PARAMS);
}
精彩评论