免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2556 | 回复: 7
打印 上一主题 下一主题

求教:如何让我的javascript 程序能运行 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-17 06:38 |只看该作者 |倒序浏览
如果下面把下面的代码写成html+javascript就能运行,
但是我想把它写在 .cgi程序里, 但是点击button的时候浏览器没有相应。
请大家指点一下。。。谢


  1. #!/usr/bin/perl

  2. use CGI;
  3.    $q = new CGI;                        # create new CGI object

  4.    print $q->header;                    # create the HTTP header

  5. $JSCRIPT =<<END;
  6.    var httpRequest;
  7.    /**
  8.     * process ...
  9.     */
  10.    function process()
  11.    {
  12. `               alert("hi");
  13.           var contentViewer = document.getElementById("contentViewer");
  14.           contentViewer.innerHTML = "<b style='color:red;'>Loading....<b>";
  15.      
  16.         if (window.ActiveXObject)
  17.         {
  18.           httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
  19.         }
  20.         else
  21.         {
  22.           httpRequest = new XMLHttpRequest();
  23.         }
  24.         httpRequest.open("GET", "q2addwiki.html", true);
  25.         httpRequest.onreadystatechange= function () {processRequest(); } ;
  26.         httpRequest.send(null);
  27.    }

  28.    /**
  29.     * Event handler for the XMLhttprequest
  30.     * when the content is back (State 4 and status 200)
  31.     * take the content of the request and copy it into the HTML page
  32.     */
  33.    function processRequest()
  34.    {
  35.       if (httpRequest.readyState == 4)
  36.       {
  37.         if(httpRequest.status == 200)
  38.         {
  39.           var contentViewer = document.getElementById("contentViewer");
  40.           contentViewer.innerHTML = httpRequest.responseText;
  41.         }
  42.         else
  43.         {
  44.             alert("Error loading page\n"+ httpRequest.status +":"+ httpRequest.statu
  45. sText);
  46.             var contentViewer = document.getElementById("contentViewer");
  47.             contentViewer.innerHTML = "Error: can not get the content ("+ httpReques
  48. t.statusText +")";
  49.         }
  50.       }
  51.       else
  52.       {
  53.           var contentViewer = document.getElementById("contentViewer");
  54.           contentViewer.innerHTML = "<b style='color:red;'>Loading....<b>";
  55.       }
  56.    }
  57. END
  58.   print $q->start_html(-title =>'hello world',
  59.                         -script =>$JSCRIPT);
  60.   print $q->button(-name=>'myButton',
  61.                            -value=>'Click Me',
  62.                            -onClick=>'process();');
  63. print "<p>";

  64. print "<div id= 'contentViewer'>";
  65. print " </div>";
  66. print" </p>";
  67.          $q->end_html;                  # end the HTML


复制代码

论坛徽章:
0
2 [报告]
发表于 2006-02-17 06:40 |只看该作者
html的程序

  1. <html>
  2.   <head>
  3.     <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
  4.     <title>XMLHttpRequest Demonstration 1</title>
  5.      <link type="text/css" rel="stylesheet" href="http://www.grallandco.com/blog/styles-site.css"/>
  6. <script>
  7.    // global variable for the XMLHttpRequest object
  8.    var httpRequest;


  9.   
  10.    /**
  11.     * process ...
  12.     */
  13.    function process()
  14.    {
  15.           var contentViewer = document.getElementById("contentViewer");
  16.           contentViewer.innerHTML = "<b style='color:red;'>Loading....<b>";
  17.      
  18.         if (window.ActiveXObject)
  19.         {
  20.           httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
  21.         }
  22.         else
  23.         {
  24.           httpRequest = new XMLHttpRequest();
  25.         }
  26.         httpRequest.open("GET", "my0.html", true);
  27.         httpRequest.onreadystatechange= function () {processRequest(); } ;
  28.         httpRequest.send(null);
  29.    }
  30.   
  31.    /**
  32.     * Event handler for the XMLhttprequest
  33.     * when the content is back (State 4 and status 200)
  34.     * take the content of the request and copy it into the HTML page
  35.     */
  36.    function processRequest()
  37.    {
  38.       if (httpRequest.readyState == 4)
  39.       {
  40.         if(httpRequest.status == 200)
  41.         {
  42.           var contentViewer = document.getElementById("contentViewer");
  43.           contentViewer.innerHTML = httpRequest.responseText;
  44.         }
  45.         else
  46.         {
  47.             alert("Error loading page\n"+ httpRequest.status +":"+ httpRequest.statusText);
  48.             var contentViewer = document.getElementById("contentViewer");
  49.             contentViewer.innerHTML = "Error: can not get the content ("+ httpRequest.statusText +")";
  50.         }
  51.       }
  52.       else
  53.       {
  54.           var contentViewer = document.getElementById("contentViewer");
  55.           contentViewer.innerHTML = "<b style='color:red;'>Loading....<b>";
  56.       }

  57.    }
  58.   
  59.   </script>


  60.    </head>
  61.    <body>
  62. <button id="myButton" name="myButton" onClick="process();">
  63.   Add tasks
  64.   </button>

  65.   <p>

  66.   <div id="contentViewer">
  67.   </div>
  68.   </p>
  69. </body>
  70. </html>







复制代码

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
3 [报告]
发表于 2006-02-17 08:53 |只看该作者
用IE看左下角的「!」符号,点开看看什麽地方有error...

论坛徽章:
0
4 [报告]
发表于 2006-02-17 12:41 |只看该作者
o , 这个程序是运行在firefox下面的。

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
5 [报告]
发表于 2006-02-17 16:48 |只看该作者
一样啦..用IE才能对Javascript debug....firefox完全不会有任何Error..所以我都用IE来对Javascript debug

论坛徽章:
0
6 [报告]
发表于 2006-02-17 18:44 |只看该作者
Hi,

the problem may be the access of request file:
httpRequest.open("GET", "q2addwiki.html", true);
_________________________^^^^^^^^^^^^^^______________

Usually under the cgi-bin as default configuration of Apache
is only allowed *.cgi file to access.
If you want to access other files, should reconfigure Apache to
make those files to worldwide accessable/readable.
If the access file is not in the same directoy such as cgi-bin,
should use absolute path to the file (http://pathto/q2addwiki.htm)

Best, ulmer

论坛徽章:
0
7 [报告]
发表于 2006-02-18 02:05 |只看该作者
Thank you ! You are both right !!

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
8 [报告]
发表于 2006-02-21 11:09 |只看该作者
Firefox有个JS View的extensions ...可以对Java Script作Debug...
比起IE好用很多...你可以试试看.....
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP