Love beautiful code? We do too.
Phương thức load(url,data,callback) trong jQuery tải dữ liệu từ server và đặt HTML đã trả về vào trong phần tử được so khớp.
Sau đây là cú pháp cho load(url,data,callback) trong jQuery:
[selector].load( url, [data], [callback] )
Tham số
Dưới đây miêu tả chi tiết về các tham số được sử dụng trong phương thức load(url,data,callback) trong jQuery:
Giả sử chúng ta có nội dung HTML sau trong result.html file:
<h1>THIS IS RESULT...</h1>
Sau đây là ví dụ đơn giản minh họa cách sử dụng của phương thức load(url,data,callback) trong jQuery:
<html>
<head>
<title>The jQuery Example</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("#driver").click(function(event){
$('#stage').load('../result.html');
});
});
</script>
</head>
<body>
<p>Click on the button to load result.html file:</p>
<div id="stage" style="background-color:cc0;">
STAGE
</div>
<input type="button" id="driver" value="Load Data" />
</body>
</html>
Xem thêm tổng hợp jQuery Ajax
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời