某个页面的onclick事件,执行其他页面的POST动作

发布于 2024-10-02 15:18:13 字数 724 浏览 3 评论 0原文

让我用一个场景来解释我的问题:
我有网页“A.jsp”和“B.jsp”。 “B.jsp”是一个带有表单的页面,需要输入字段“用户名”,并且在提交时显示带有用户特定信息的特定页面“C.jsp”。 “A.jsp”有一个表,其中的元素对应于“B.jsp”上的“用户名”。单击“A.jsp”上的某个“用户名”,我想重定向到“C.jsp”,并包含单击的用户名特定信息。

我该如何完成它?

我正在使用MVC框架。只有 A.jsp 和 B.jsp 与控制器绑定,C.jsp 只是一个视图。但是,我相信这不是什么问题,因为这似乎更像是一个 javascript 问题。

使用原型javascript框架,我尝试了以下操作:
redirectToC=函数(pageurl){
var username=document.getElementById("user1").value;
url=页面网址; //我使用B.jsp作为Pageurl
$j.ajax({ 类型:'POST',
网址: 网址, 数据:“用户名=”+用户名,
成功:函数(请求){
window.location=请求;
}
});
}

Let me explain my problem with a scenario:
I have webpages "A.jsp" and "B.jsp".
"B.jsp" is a page with a form that requires input field, 'username' and on submission displays a certain page "C.jsp" with user-specific information. "A.jsp" has table with an element that would correspond to 'username' on "B.jsp". Onclick of a certain 'username' on "A.jsp", I want to be redirected to "C.jsp" with clicked username specific information.

How do I get it done?

I am using MVC framework. Only A.jsp and B.jsp are tied to controller, C.jsp is only a View. But, I believe that is less of an issue, since this seem to be more of a javascript question.

Using prototype javascript framework, I have tried the following:
redirectToC=function(pageurl){
var username=document.getElementById("user1").value;
url=pageurl; //I am using B.jsp as Pageurl
$j.ajax({
type: 'POST',
url: url,
data: "username="+username,
success: function(request){
window.location=request;
}
});
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟沫凡尘 2024-10-09 15:18:14

C.jsp 仅支持 POST 还是也支持 GET 请求?

  1. 如果是这样,请在“用户名”链接的 onClick 中,将浏览器的位置(我认为是 document.location)设置为 C.jsp 的 URL,并使用用户名作为 GET 参数。由于您正在动态生成 A.jsp 页面,因此可以在生成时将该 URL 嵌入到页面中。
  2. 如果没有,我能想到的一个糟糕的 hack 是使用用户名实现 table 元素,作为隐藏的表单元素单击时通过 javascript 提交 - 'form'.submit()

Does C.jsp support only POST - or does it support GET requests as well?

  1. If it does, in the onClick of the 'username' link, set the location of the browser (i think document.location) to the URL of C.jsp with the username as a GET parameter. Since you are generating the A.jsp page dynamically, this URL can be embedded into the page at generation time
  2. If it does not, a bad hack i can think of is to implement the the table element with the username, as a hidden form element which is submitted via javascript when clicked - 'form'.submit()
始终不够 2024-10-09 15:18:14
<form id="showUserForm" action="/controller/showUser" method="POST">
    <input type="hidden" id="username" name="username">
</form>

……………………

<a onclick="showUser('${users.userName}')" href="#"></a>

<script type="text/javascript">
    function showUser(userName){
        document.getElementById("username").value = userName;
        document.getElementById("showUserForm").submit();
    }
</script>
<form id="showUserForm" action="/controller/showUser" method="POST">
    <input type="hidden" id="username" name="username">
</form>

..........

<a onclick="showUser('${users.userName}')" href="#"></a>

..........

<script type="text/javascript">
    function showUser(userName){
        document.getElementById("username").value = userName;
        document.getElementById("showUserForm").submit();
    }
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文