<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