AJAX不好用

2016-07-07 15:04 来源:www.chinab4c.com 作者:ecshop专家

如图

代码如下
  1. <select style="width:80px;" onChange="ysum()" name="start1" id="start1">
  2. <option>选择</option></select>
复制代码
JS:
  1. <script>
  2. functionysum() {
  3. Ajax.call('test.php?act=ajax', 'id=4', addPrice, 'GET', 'JSON');
  4. }

  5. function addPrice(result) {
  6. alert(result);
  7. }
  8. </script>
复制代码
test.php:
  1. <?php

  2. define('IN_ECS', true);

  3. require(dirname(__FILE__) . '/includes/init.php');
  4. include_once(ROOT_PATH . 'includes/cls_image.php');

  5. if ($_REQUEST['act'] == 'ajax')
  6. {
  7. $result = "AJAX显示";

  8. clear_cache_files();

  9. make_json_result($result);
  10. }
  11. ?>
复制代码
各位帮帮忙吧,搞了一天了。实在搞不出来了

回答:
在页面里加入:

var process_request = "";

process_request 是处理Ajax时,页面的提示信息。
sodoit 发表于 2009-11-27 16:26

果然不弹了。不过没反应了。难道我JS写错了?

多加一个<option></option>

好了。PHP文件里的写法有问题。唉。郁闷