จาก Problems with variable scope (JavaScript) มันทำไม่ได้ครับ เพราะว่า ajax get มันเป็นเรียกแบบ asynchronous คือมันจะประมวลผล alert(id) ก่อนที่จะที่ ajax get จะ set ค่า id เพราะว่าหลังจากมันรันเสร็จผมใช้ firebug alert มันก็แสดงค่าได้
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
var id = 0;
$(document).ready(function() {
$.get("SelectMaxID.php",function(data) {
$('#result').val( data );
id = data;
console.debug(id);
});
alert(id)
});
</script>
</head>
<body>
<input type="hidden" name="result" id="result"></div>
</body>
</html>