现在作为一名自学前端开发的学生,对网站的前端与后台数据交互不懂,想学习ajax,很迷茫,不知从何学起?
回复内容:
如果现在是2005年你说 Ajax 难学我表示理解,可现在是2014年了哇,Ajax 这么基础的概念还要扯上“迷茫”?如果你翻不了墙,用不了 Google,我帮你找到一个学习的地方:AJAX 教程,一定要看! 会jquery吗,可以先从jquery的ajax入手,会比较简单。
ajax写在js脚本里,一般是获取表单的数据(value)然后传到php脚本进行处理,再接受返回的数据。jquery的写法是这样的:
js脚本
<span class="nx">$</span><span class="p">.</span><span class="nx">ajax</span><span class="p">({</span> <span class="nx">type</span><span class="o">:</span><span class="s1">'get'</span><span class="p">,</span> <span class="nx">url</span><span class="o">:</span><span class="s1">'index.php'</span><span class="p">,</span> <span class="nx">data</span><span class="o">:</span><span class="p">{</span> <span class="nx">id</span><span class="o">:</span><span class="mi">1</span><span class="p">,</span> <span class="nx">num</span><span class="o">:</span><span class="mi">2</span> <span class="p">},</span> <span class="nx">datatype</span><span class="o">:</span><span class="s1">'json'</span><span class="p">,</span> <span class="nx">success</span><span class="o">:</span><span class="kd">function</span><span class="p">(</span><span class="nx">data</span><span class="p">){</span> <span class="c1">//这里的data是php返回的数据,参数是data固定不变</span> <span class="nx">alert</span><span class="p">(</span><span class="nx">data</span><span class="p">);</span> <span class="c1">//输出php脚本里'echo' 后面的数值,也就是3</span> <span class="p">}</span> <span class="p">})</span>
最经典的前端面试题之一:当你点了百度的搜索按钮,到你看到搜索结果,这之间发生了一些什么事情。
可能对于这个面试问题的研究,能够让你明白更多的东西 假定你会写javascript
假定你知道什么是json
假定你会用怎么用javascript处理json
那么请还是先看
AJAX 教程
然后如果还是不明白,请简单入门php 在自己的电脑上建立一个服务器
PHP 教程(虽然对你来说可能有些困难,但是很有必要!)
然后我觉得 你可以先不要去 刨根问底,直接写 上述教程的例子
然后你可能懂了,也可能还不懂~ 没关系
如果还不懂
假定你不会写javascript
假定你不知道什么是json
假定你不会用javascript处理json
那么请重新学习javascript
在学习 javascript前强烈建议看下
HTML 系列教程
注意看html的基础部分
然后 先知道 如果没有ajax 我们怎么处理数据
然后 继续 循环这个环节~
最后不要在意上面那些人~ 他们是大牛 不了解我们小菜的世界 可以参考一下这个问题:
HTML、CSS、JavaScript、PHP、 MySQL 的学习顺序是什么? 请修改一下标题吧,你这水平应该还不算入了门。。。 加油! 请修改一下标题吧,你这水平应该还不算入了门。。。 我一朋友弄了一个前端交流群,大家有什么问题,就在那上面提问,互相学习,感觉还不错,学了不少知识!! 群号分享给你374694134 我觉得你需要学习的是http协议

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
