|
|
|
ผมไม่เข้าใจรูปแบบ function ของ javascript ที่เป็น jquery ผลลัพท์ออกมาแล้ว เพิ่มความ งง เป็นส่วนใหญ่ครับ |
|
|
|
|
|
|
|
Code (JavaScript)
$("a.del2").click(function(id) {
id มายังไง - -
|
|
|
|
|
Date :
2015-12-22 16:47:46 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function () {
$("#del").html("Delete?");
$("#del").dialog({
autoOpen: false,
});
$("a.del2").on('click',function() {
var id = $(this).attr('id');
$("#del").dialog({
autoOpen: true,
title: "Delete Now?",
modal: true,
buttons: {
Ok: function() {
window.location='04_1.php?id='+id;
},
Cancel: function() {
$("#del").dialog("close");
}
}
});
});
});
</script>
<div id="del"></div>
<a id="2" class="del2" href="#">Delete</a>
</body>
</html>
|
ประวัติการแก้ไข 2015-12-22 16:49:55
|
|
|
|
Date :
2015-12-22 16:49:23 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆ ครับ ท่าน Boat Junior ผู้เชี่ยวชาญ
เพิ่มเติมบรรทัดเดียว ได้ผลลัพธ์ออกมาตรงตามจุดประสงค์
ขอบคุณมากๆ จริงๆ ครับ
|
|
|
|
|
Date :
2015-12-22 16:57:30 |
By :
suparuark |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|