<div class="much1" id="much1">
<a href="CheckState.php?state=1" ><strong>123</strong></a><br />
<span class="font">正读</span>
</div>
这段js还有错误,加上以后我的整个js都不起作用了。
<pre class="brush:js; toolbar: true; auto-links: false;">$("#much1 a").click(function(){</pre><pre class="brush:js; toolbar: true; auto-links: false;"> // var requestData = {state: $(this).text()};
$.post('CheckState.php',{ state: "1" },function(){
$('#center_right').load('CheckState.php');
);
return false;
});</pre>
首先强调一下post方法:jQuery.post(url, [data], [callback], [type])
url:发送请求地址。
data:待发送 Key/value 参数。
callback:发送成功时回调函数。
type:返回内容格式,xml, html, script, json, text, _default
post方法中的参数,数字参数可以不用加引号,回调函数只有在请求成功的时候才会调用,请求不成功就不会执行。而且我印象中,在页面中写入js代码,需要在
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。