摘要:
How to Submit a Form Using JavaScripthttp://www.javascript-coder.com/javascript-form/javascript-form-submit.phtmlGenerally, a form is submitted when the user presses a submit button. However, sometime... 阅读全文
摘要:
http://blog.chinaunix.net/u/12569/showart_171507.html最近做了一阶段的AJAX开发,有一些心得体会。日后会慢慢写出来,也请AJAXer多多指教~ 刚开始写AJAX代码的时候,直接参照的是AJAX基础教程一书中的代码(该书真的很不错,是AJAX入门的经典教材,是图灵出版社的。计算机方面的书籍,我最信任的就是O'R和图灵的)。 该书的创建XMLHt... 阅读全文
摘要:
window.location和window.open的区别 window.location = "http://www.xxxxxxxx.net" 跳转后有后退功能 window.location.replace("http://www.xxxxxxxx.net") 跳转后没有后退功能 window.open("http://www.xxxxxxxx.net") 要新的窗口打开链接 阅读全文