$(document).ready(function(){
function openEditor(){
$("#editor").show().animate({width: 965, height: 380}, 1500);
$("#editor textarea").show();
}
function closeEditor(){
$("#editor").animate({width: 985, height: 1}, 1500, function(){
$("#editor").hide();
$("#editor textarea").hide();
});
}
function setedit(){
$.ajax({
type: "POST",
url: "engine.php",
data: "title="+ $('#editorTitle').attr('value') +"&text="+ $('#editorText').html(),
beforeSend: function(){
$('#mainField').html('<img src="data/images/loader.gif" alt="Loading...">');
},
success: function(msg){
alert(msg);
closeEditor();
search();
}
});
}
function search(){ // Row 138
$('#editorTitle').val($('#search').val());
$('#mainField').html('<img src="data/images/loader.gif" alt="Loading...">');
$.get('engine.php?search='+ $('#search').val() , function(data) {
$('#mainField').html(data);
});
$.get('engine.php?raw=true&search='+ $('#search').val() , function(data2) {
$('#editorText').html(data2);
});
$.get('engine.php?title=true&search='+ $('#search').val() , function(data2) {
$('#h1').html(data2); // Row 152
$('#editorTitle').html(data2);
});
}
$("#ready").html('Document ready at '+ event.timeStamp); // Row 157
});
你好,需要物體嗎?
在138行和行157我得到一些奇怪的錯誤,一個對象(?)是必需的? 我一直在這一整天工作,它仍然沒有工作...
幫助!請!
問候!
什麼`event`(你的157行)?沒有引用其他地方... – acm 2011-02-15 16:37:23
$('#ready')實際上是否找到任何東西?事件是否定義在這一點上? – 2011-02-15 16:37:37
你在用什麼調試器? – Pointy 2011-02-15 16:43:08