我在HTML页面中有此代码该按钮保存用户个人资料,然后保留在该页面上。我希望在保存后显示一个警告框,并将按下警告按钮的时间重定向到另一个页面。
<input type="button" value="{l_update_my_profile}" onClick= "submitEditProfileBasicForm();" class="btn lower_header_color" title="{l_update_my_profile}" onMouseOver="window.status='{l_update_my_profile}'; return true;" onMouseOut="window.status=''; return true;"
答案 0 :(得分:1)
将此代码添加到任何位置以提醒用户,然后在单击按钮时重定向到另一个页面。
<script>
function submitEditProfileBasicForm() {
alert('I\'m about to redirect you to another page.');
location.href = 'http://example.com';
}
</script>
<input type="button" value="{l_update_my_profile}" onClick="submitEditProfileBasicForm();" class="btn lower_header_color" title="{l_update_my_profile}" onMouseOver="window.status='{l_update_my_profile}'; return true;" onMouseOut="window.status=''; return true;"
/>
&#13;
答案 1 :(得分:0)
使用jQuery:
$(".btn lower_header_color").click(function(){
alert('I\'m about to redirect you to another page.');
location.href = 'http://example.com';
});
答案 2 :(得分:0)
根据您提供的HTML,它应该如何工作。
function submitEditProfileBasicForm() {
alert("You will be redirected to ...");
location.href = "whatever.com";
}
&#13;
答案 3 :(得分:0)
向onclick事件添加一个函数,如下所示:
<input type="button" onClick= "submitEditProfileBasicForm();redirect();" />
在新功能中进行重定向:
function redirect() {
alert("You will be redirected");
location.href = 'http://disney.com';
}