<div style="width:100%;"> <button class="information-btn" type="submit" id="all-btn">全部员工</button> <button class="information-btn" type="submit" id="new-btn">添加员工</button> <button class="information-btn1" type="submit" id="chaxun-btn">查询</button> <input type="text" id="chaxun-text" name="chaxuntext" placeholder="请输入要查询的员工信息" value=""> </div>如何设置点击添加员工后跳转的对应页面
时间: 2023-07-19 15:43:24 浏览: 59
您可以使用以下 JavaScript 代码来实现点击 "添加员工" 按钮时跳转到另一个页面:
```javascript
var newBtn = document.getElementById("new-btn");
newBtn.addEventListener("click", function() {
window.location.href = "your-add-employee-page.html";
});
```
在这个示例中,您需要将 "your-add-employee-page.html" 替换为您实际的添加员工页面的地址。当用户单击 "添加员工" 按钮时,它将跳转到这个页面。
相关问题
<div style="width:100%;"> <button class="information-btn" type="submit" id="all-btn">全部员工</button> <button class="information-btn" type="submit" id="new-btn">添加员工</button> <button class="information-btn1" type="submit" id="chaxun-btn">查询</button> <input type="text" id="chaxun-text" name="chaxuntext" placeholder="请输入要查询的员工信息" value=""> </div>改成两个在同一行的form
好的,你可以将代码修改为以下内容:
```
<div style="width:100%;">
<form style="display:inline-block;" method="post" action="#">
<button class="information-btn" type="submit" id="all-btn">全部员工</button>
</form>
<form style="display:inline-block;" method="post" action="#">
<button class="information-btn" type="submit" id="new-btn">添加员工</button>
</form>
<form style="display:inline-block;" method="post" action="#">
<button class="information-btn1" type="submit" id="chaxun-btn">查询</button>
<input type="text" id="chaxun-text" name="chaxuntext" placeholder="请输入要查询的员工信息" value="">
</form>
</div>
```
这样就可以将三个按钮和输入框放在同一行的两个表单中了。注意,这里使用了 `display:inline-block` 将表单元素变成行内块级元素,从而实现在同一行显示。
<!-- 注册的模态框 --> <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabel">注册</h4> </div> <div class="modal-body"> <form> <label for="gender-input">邮箱:</label> <div style="text-align:center;vertical-align:middel;"> <input type="text" id="email" placeholder="请输入邮箱" class="form-control" style="width: 50%;" maxlength="5"> </div> <div> <label for="gender-input">密码:</label> <input type="text" id="password" placeholder="请输入密码" class="form-control" style="width: 50%;"> </div> <div> <label for="gender-input">确认密码:</label> <input type="text" id="confirm_password" placeholder="请确认密码" class="form-control" style="width: 50%;"> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">取消</button> <button type="button" class="btn btn-primary olk" data-dismiss="modal">注册</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </div>
这是一段Bootstrap代码,用于显示一个注册模态框。模态框中包含了一个表单,其中有三个输入框用于输入邮箱、密码和确认密码。模态框底部还有一个取消按钮和一个注册按钮。
需要注意的是,这段代码中使用了Bootstrap的CSS和JavaScript库。如果您要使用这段代码,需要引入相应的库文件。具体的引入方法可以参考Bootstrap官网的文档。另外,如果您需要对模态框进行样式或行为的调整,可以参考Bootstrap的文档或自行编写CSS和JavaScript代码。
阅读全文