浏览代码

Listing 6.12: $(foo).load to post with a query.

Frederic G. MARAND 9 年之前
父节点
当前提交
8cec86428b
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      Chapter 6/06.js

+ 1 - 3
Chapter 6/06.js

@@ -74,8 +74,6 @@ $(document).ready(function () {
   $('#letter-e a').click(function (event) {
     event.preventDefault();
     var requestData = { term: $(this).text() };
-    $.post('e.php', requestData, function (data) {
-      $('#dictionary').html(data);
-    });
+    $('#dictionary').load('e.php', requestData);
   });
 });