!DOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
title>即點即改/title>
script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js">/script>
/head>
body>
?php
$con = array(
array("id"=>1,"姓名"=>"張三","性別"=>"女"),
array("id"=>2,"姓名"=>"李四","性別"=>"男"),
array("id"=>3,"姓名"=>"王五","性別"=>"男"));
// print_r($con);die;
?>
table align="center" border="1">
?php foreach ($con as $key => $v): ?>
tr pid="?= $v['id'];?>">
td>span class="up" style="cursor:pointer;">?= $v['姓名'];?>/span>/td>
td>?= $v['性別'];?>/td>
/tr>
?php endforeach; ?>
/table>
/body>
/html>
script>
//即點即改
$(document).on("click",".up",function(){
var content = $(this).text(); //獲取到當(dāng)前點擊對象的值
var pid = $(this).parents("tr").attr('pid'); //通過attr 獲取到設(shè)置的屬性(pid)
//當(dāng)點擊修改文字時 變成文本框并且獲取到原值(content)
$(this).parent().html("input type='text' class='fo' value='" + content + "'/>");
$(".fo").focus(); //光標(biāo)
$(".fo").blur(function(){
//獲取到修改后的值
var val = $(".fo").val();
//
/*
將所有修改信息傳到后端
*/
$(this).parent().html("span class='up' style='cursor:pointer;'>"+val+"/span>");
})
})
/script>
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP數(shù)組(Array)操作技巧大全》、《PHP常用遍歷算法與技巧總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計算法總結(jié)》、《PHP數(shù)學(xué)運算技巧總結(jié)》、《php字符串(string)用法總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》