我有一个格式如下的html文件
<html>
<head>
<title>Create a product</title>
</head>
<body>
<form action="/submit/form/" method="POST">
<input name="text" placeholder="Email please"/>
<input name="" type="submit" class="btn btn-large big_btn " value="Save Changes">
<input id="cancel_profile_changes" name="" type="button" class="btn btn-large big_blkbtn hide_margtp_35_a " value="Cancel">
</form>
<body>
</html>
当用户提交表单时,它将被重定向到action attribute url
,但是当用户单击取消时,弹出对话框应该打开并显示Are u sure u want to discard changes
带有ok
和的消息cancel
。
所以当用户点击时Ok
,他应该被重定向到一个url /dashboard/
,如果他点击了cancel
,那么他应该在同一个页面中而不需要重定向并且不会丢失表单数据。
那么如何很容易地使用 twitter bootstrap 实现上述功能,直到现在我都在使用bootbox.js
这种功能,但是由于设计实现我只想使用 twitter bootstrap ?
那么如何使用 twitter bootstrap 实现上述功能呢?