我有一個validation.js文件jquery的: - [對象的對象]錯誤
var name = $("#name");
$.ajax({
type: "get",
url: "test.jsp",
data: "name="+name,
success: function(msg) {
$('#result').hide();
$("#result").html(msg)
.fadeIn("slow");
}
});
test.jsp的
</head>
<body>
<h1><%
String user=request.getParameter("name");
out.print(user);
%></h1>
</body>
登錄user.jsp文件
<form method="post" id="customForm" action="welcome.html">
<div>
<label for="name">Name</label>
<input id="name" name="name" type="text" />
<span id="nameimage"></span>
<span id="nameInfo"></span>
<p id="result"></p>
</div>
我必須在我的表單中顯示用戶名,只要用戶g oes到我的form.but 它是顯示[對象對象]錯誤的地方,其中p標籤開始
發生了什麼`console.log(msg)`?這個對象是什麼樣的? – treeface 2011-02-07 17:30:27
[object Object]不是一個錯誤,它是基本JavaScript對象的字符串表示形式。這意味着您的服務器可能正在打印JSON或某種對象。 – 2011-02-07 17:35:55