ajax异步传递
table width="100%" border="0" cellspacing="0" cellpadding="0" class="ttbb5"> <tr> <th scope="col"><strong>序号</strong></th> <th scope="col">国家</th> <th scope="col">省份</th> <th scope="col">地区</th> <th scope="col">操作</th> </tr> {if $list or $list|@count neq 0 } {foreach from=$list item=item key=index} <tr align="center"> <td>{$index}</td> {if $item.parent_tow_id eq 2} <td class="ttbb6">{$item.country}</td> <td class="ttbb6">{$item.province}</td> <td class="ttbb6">{$item.name}</td> {/if} {if $item.parent_tow_id eq 1} <td class="ttbb6">{$item.country}</td> <td class="ttbb6">{$item.name}</td> <td class="ttbb6"></td> {/if} {if $item.parent_tow_id eq 0} <td class="ttbb6">{$item.name}</td> <td class="ttbb6"></td> <td class="ttbb6"></td> {/if} <td align="center" class="ttbb6"> <div align="right"> <input name="p" type="text" id="p" value="{$item.paixu}" size="5" maxlength="3" /> <input type="button" class="anniu4" value="确定" onclick="foo()" /> </div></td> </tr> {/foreach} {else} <tr> <td align="center" colspan="5">--暂无数据--</td> </tr> {/if} </table> {include file=warning.tpl}</div> </td> </tr></table>
input=text显示数据库排序的值 在文本框修改值点击确定 怎么传入数据库 改变paixu的值
帮帮忙给写一个ajax异步传递的代码吧
回复讨论(解决方案)
用表单提交你会吗?
如不会,请先学习一下
用表单提交你会吗?
如不会,请先学习一下
没明白什么意思啊 我写的不对么? 还是 ajax必须要用表单提交啊
用表单提交你会吗?
如不会,请先学习一下
<script type="text/javascript"> function modifyItem() { if (trim(document.getElementById("p").value) == "") { alert("不能为空!"); document.getElementById("p").focus(); return; } with (document.getElementById("itemForm")) { method = "post"; action = "item.do?command=modify&paixu=${itemForm.paixu}"; submit(); } } //返回 function goBack() { window.self.location = "item.do?command=list&paixu=${itemForm.paixu}"; } </script>
<form name="itemform" id="itemform"> <input name="p" type="text" id="p" value="{$item.paixu}" size="5" maxlength="3" /> <input type="button" class="anniu4" onclick="modifyItem()" value="确定" /> </form>
这里如果列表,你的名字不能重复,或者你改为name="p[]"
这里如果列表,你的名字不能重复,或者你改为name="p[]"
改成name="p[]"了 那ajax我写错了么? 我试验好几遍,不知道错在哪?
神呐 帮帮我吧 要死了 要死了 要死了
这个写个ajax很难么? 都不会啊?
不是很难。
不是很难。
服了,真心的。 我都关注你微信了大哥 你也不给帮忙 不够意思
http://bbs.phome.net/showthread-13-130691-0.html
有例子
http://bbs.phome.net/showthread-13-130691-0.html
有例子
这个例子很生动, 我先注册 然后下载了文件,看到代码发现其实我两不是一个类型的,对我这个他根本不适用啊,smarty都是那么写ajax的么? 我怎么感觉他这个文件缺点什么似的啊 ?那个save_ajax.php 我还能看懂 别的真是磕了
http://bbs.phome.net/showthread-13-130691-0.html
有例子
{
data_q = "actiontype=" + act + "&name=" + txt.value + "&id="+id+"&tid="+Math.random(10);
///document.write("save_ajax.php?"+data_q);
if(val != txt.value)
{
$("#tipmsg").show();
$.ajax({
type: "GET",
url: "save_ajax.php",
cache: false,
data: data_q,
success: function(msg){
obj.innerHTML = msg;
$("#tipmsg").hide();
}
});
}
else
{
obj.innerHTML = val;
}
} 套这个?

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-

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.

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' =>

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

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

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
