日期:2014-05-17 浏览次数:20769 次
$.ajax({
type: "POST",
url: postUrl,
cache: false,
dataType: "html",
data: postData,
success: callback,
error: callbackError
------其他解决方案--------------------
我觉得你的前台有取到值
<s:iterator id="bookKinds" value="bookKinds">
<input type="button" onclick="kk()" id="sendkind" value="<s:property value='bookKinds'/>"/>
</s:iterator>
把这个value换成这个样子,然后把你往后台传参数的那个不要用对象传,而用一个参数变量传递
------其他解决方案--------------------<script src="js/jquery-1.8.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".sendkind").click(function(){
$.post("bookshow_findBookAskind.action?book.bookkind="+$(this).val());
});
});
</script>
<div id="nn">
<s:iterator id="bookKinds" value="bookKinds">
<input type="button" class="sendkind" value="${bookKinds}" />
</s:iterator>
</div>
试试
------其他解决方案--------------------
先alert出来看页面有没有值,book.bookkind你的参数名最好别用对象的方式,没什么必要。
------其他解决方案--------------------
alert是可以查出值的,就是post提交的时候后台接受不到,对象方式传值会有影响?
------其他解决方案--------------------
你后台代码是怎么接收的
------其他解决方案--------------------
难道不会F12 看看网络 看看那个请求 的详细状态!
------其他解决方案--------------------
private Book book;
通过book对象的get方法接收前台数据
------其他解决方案--------------------
$("#sendkind").val();
把这个赋给一个var, 在url后面加这个var 试试
或者实施直接用from表单提交试试,看能不能取值
------其他解决方案--------------------