有人可以一行一行地向我解释这个剧本的作用我很遗憾。结果是一个CSS div
,稍后会显示一些搜索结果。
61 var resultObject = $( "#results" );
62 $( "a" ).click( function( anchor ){
63 anchor.preventDefault();
64 var linkObject = $( this );
65 $.ajax({
66 url: linkObject.attr( "href" ),
67 type: "post",
68 dataType: "html",
69 error: function(){
70 resultObject.html( "<p>Page Not Found!!</p>" );
71 },
72 success: function( newData ){
73 resultObject.html( newData );
74 }
75 });
77 });
78 });
答案 0 :(得分:1)
<a>
),以使用其功能; <p> Page Not Found </ p>!
;