实践ajax 2

阅读更多
成果:
  1. prototype windows

目的:
实现一个弹出窗口, 里面包含留言表格

工具:
  • prototype windows
实现:
java 代码
 
  1. function c(){  
  2.     console.info("in show");  
  3.     //debugger;  
  4.     win = new Window({className: "mac_os_x", title: "Sample", width:200, height:150, destroyOnClose: true});  
  5.     win.getContent().update('
         subject:
            "text" name="subject">
          comment:
            "comment" rows="5" cols="18">
         "submit">   ' );  
  6.     win.showCenter();  
  7. }  

小结:
prototype windows 提供了很多类型的窗口模式,在他的网站有各种窗口的演示。

你可能感兴趣的:(Ajax,prototype,Windows,OS,C)