0
我有一個jquery顯示在一個div鏈接無需重新加載頁面: jQuery代碼:添加微調圖像中的jQuery代碼
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function(event) {
// Prevent default click action if javascript is enabled
event.preventDefault();
//load the content of the new page into the content of the current page
$("#content").load($(this).attr("href") + " #content");
})
});
</script>
一切都很好,工作,但就是這麼簡單!如何在此代碼的內容加載之前添加加載圖像?
第二個問題,有沒有什麼辦法在加載後在地址欄中顯示新的頁面鏈接?