我对此代码有疑问:
<script type="text/javascript">
$(document).ready(function () {
$("a.show").click(function () {
$("#Box").slideDown(500);
//if i return false the message conformation show and stopped but i have
//problem the Query String this not passing in the URL
// and if i return true the message show and hide quickly but
//the QueryString passing in the URL
});
});
</script>
注意:在我的解决方案中我已经消息确认进行删除,但我将设计我的消息框,如果客户端点击我会做两个按钮(是,否)是的删除执行代码(在此代码中我有查询字符串 :()
答案 0 :(得分:0)
因此,当用户点击链接时,您希望向服务器发送一些http请求,但您不想离开该页面?相反,你只是想操纵页面上的对象?
我认为你正在寻找这个:http://api.jquery.com/jquery.ajax/
以下是一个例子:https://jsfiddle.net/9fg8dm3z/5/
$(document).ready(function () {
$("a.show").click(function () {
$.ajax({
url: ""
}).done(function() {
$("#Box").slideDown(500);
});
return false;
});
});
显然,您想要更改网址。但是当用户单击该链接时,会对该URL发出http请求。收到回复后,&#34;完成&#34;功能将被执行,显示&#34; Box&#34;。