gpt4 book ai didi

java - HTML 按钮未重定向到 Java 邮件正文中的给定链接

转载 作者:行者123 更新时间:2023-12-02 10:52:08 25 4
gpt4 key购买 nike

我想向我正在创建的 HTML 电子邮件模板添加一个按钮。我已经创建了一个按钮,但是当我单击它时,链接没有出现。谁能帮我解决我的问题吗?

这是我的代码:

messageBodyPart.setContent("<h1>You Have a Promotion</h1> <h3>Your First Name :</h3>" + FirstNm + 
"<h3>Your Last Name :</h3>" + LastNm + "<h3>Your Employee ID :</h3>" + Employeeid +
" <br/> <form>\r\n" +
"<input class=\"MyButton\" onclick =\"http://localhost:8080/update/status/password/ACCEPT\" type = \"button\" value =\"Accept Your Promotion\" />\r\n" +
"</form>","text/html");

最佳答案

尝试添加 anchor 标记并使用 href 属性而不是 input 元素上的 onclick 事件。

messageBodyPart.setContent("<h1>You Have a Promotion</h1> <h3>Your First Name :</h3>" + FirstNm + 
"<h3>Your Last Name :</h3>" + LastNm + "<h3>Your Employee ID :</h3>" + Employeeid +
" <br/> <form>\r\n" +
"<a href=\"http://localhost:8080/update/status/password/ACCEPT\"><input class=\"MyButton\" type = \"button\" value =\"Accept Your Promotion\" /></a>\r\n" +
"</form>","text/html");

关于java - HTML 按钮未重定向到 Java 邮件正文中的给定链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52089680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com