|
|
|
เราจะ get element ที่มาจาก ajax ได้ยังไงครับ ใช้ jquery ครับ |
|
|
|
|
|
|
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Element from callback</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(document).ready(function(){
$('#content').load('ajax.php');
$('#btnEmbedPage').click(function(){alert('fix Page');});
$('#btn').click(function(){alert('From ajax');});
});
</script>
</head>
<body>
<div id="wrapper">
<h2>Introduction</h2>
<hr>
<h4>Content</h4> <input type='button' id="btnEmbedPage" value="fixPage">
<div id="content" style="background-color:gray">
dfsdf
<!--insert Dynamic HTML From Ajax-->
</div>
</div>
<a href="testAjaxGetEleFrmCalback.zip">download File Demo</a>
</body>
</html>
|
|
|
|
|
Date :
2013-10-14 12:03:10 |
By :
jigjopuna |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
file ajax.php
<?php
$row = 5;
for($i=1; $i<=$row; $i++){
echo "<p>paragraph$i</p>";
}
echo "<input type='button' value='Send' id='btn'>";
?>
|
|
|
|
|
Date :
2013-10-14 12:03:41 |
By :
jigjopuna |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณมากนะครับ ทุกคน
|
|
|
|
|
Date :
2013-10-14 12:51:02 |
By :
jigjopuna |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ออ เราต้องดักอีเว้น element ที่มีใน page ก่อน แล้วค่อยอ้างถึง Dom ข้างในอีกที
ความรู้ใหม่ครับ ขอบคุณนะครับ ทำตั้งนาน ^^
|
|
|
|
|
Date :
2013-10-14 13:50:53 |
By :
jigjopuna |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|