日期:2014-05-16 浏览次数:20729 次
<action name="getUserInfoByW3Account" class="applyUserAction" method="getUserInfoByW3Account">
</action>
public static UserInfo getUserInfoByW3Account(String w3Account)这个方法。我想点击页面按钮把查询的值赋到对应的文本框内。。
function getEmailAndPhone(w3Account)ajax真心不会饿。。求助啊!!
{
var action="getEmailAndPhone.action?time="+(new Date().getTime());
$.ajax({
type:"POST",
url:action,
dataType:"json",
data:w3Account,
success:function(w3Account)
{
if(data.result=='success')
{
alert("成功");
}
else
{
alert("失败");
}
},
error:function(data)
{alert("data="+data);
}
});
}