<script> // jQuery 加载函数 $(function () { // 设置文本框的readonly属性 $(":text").attr("readonly","readonly"); // 点击事件 $(":text").click(function () { // 获取当前元素的父元素的指针 也就是 爸爸在他们的兄弟中排行老几 var i = $(this).parent().index(); // 我>大儿子的>第几个小儿子 var name = $("table tr:first-child td:eq("+i+")").html(); // ☆☆☆ 当前元素的父元素的兄弟元素的子元素 var id = $(this).parent("td").siblings("td").find("input:first-child").val(); var username = $(this).parent("td").siblings("td:nth-last-of-type(2)").find("input").val(); // 对话框 window.prompt(标题,默认值) prompt("修改 id:"+id+",用户名:"+username+"的"+name,$(this).val()); }); }); </script>
2019-10-31--11:50:06
原文地址:https://www.cnblogs.com/xxing/p/11770367.html
时间: 2024-10-12 20:19:00