手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery.post用法示例代码
jquery.post用法示例代码
摘要:使用ajax在前端验证是否执行某个操作jquery.post参数为url,[data],[callback],[type]url:发送请求地...

使用ajax在前端验证是否执行某个操作

jquery.post参数为

url,[data],[callback],[type]

url:发送请求地址。

data:待发送 Key/value 参数。

callback:发送成功时回调函数。

type:返回内容格式,xml, html, script, json, text, _default。

复制代码 代码如下:

$.post('admin/HhCheckVote.do?ids=' + '${ids}', {}, function(flag) {

if(flag.isVote=="true"){

document.getElementById("jvForm").action="admin/HhArticleVoteCommit.do";

document.getElementById("jvForm").submit();

}else{

alert("您已经投过票!");

}

});

struts.xml中action配置为:

复制代码 代码如下:

<action name="HhCheckVote" method="checkVote"

class="org.bkgd.ehome.jeeplugin.userapp.web.action.ActionHhArticleQuery">

<result type="json"></result>

</action>

Action

复制代码 代码如下:

private String isVote;

public String getIsVote() {

return isVote;

}

public void setIsVote(String isVote) {

this.isVote = isVote;

}

public String checkVote(){

try {

List<Map<String,Object>> list = aloneIMP.checkVote(ids,getCurrentUser()).search().getResultList();

if(list.size()==0){

isVote = "true";

}else{

isVote = "false";

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return SUCCESS;

}

PS:

action 方法的返回值需是全局变量,且必须有get,set方法,局部变量则不行

方法有返回值,不能是void

【jquery.post用法示例代码】相关文章:

javascript去除空格方法小结

Jquery使用css方法改变样式实例

jQuery常用知识点总结以及平时封装常用函数

jquery中map函数遍历数组用法实例

Javascript特效:随机显示图片的源代码

Javascript中With语句用法实例

浅谈jQuery中replace()方法

javascript原型模式用法实例详解

jquery使用each方法遍历json格式数据实例

网页常用特效代码整理

精品推荐
分类导航