我在表单上使用了一个按钮。点击该链接后如何链接到其他网页/文件?这是我尝试的代码,但不起作用。
<button class="btn" data-bind="click: function() { document.location.href=$(this).attr('RiskAssessmentMain.aspx'); }">back</button>
答案 0 :(得分:13)
<input type='button'value='back' class="btn" onclick="document.location.href='RiskAssessmentMain.aspx';"/>
答案 1 :(得分:2)
在<form>
操作属性中设置您要添加的网址。
然后使用submit
代替button
这是一个例子:
<form action="http://google.com">
<input type="submit" value="Google">
</form>
答案 2 :(得分:2)
你可以尝试这个
<script>
function open_win() {
window.open("http://www.google.com")
}
</script>
或者你也可以这样做
<script>
function openWin() {
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.focus();
}
</script>
<input type="button" value="Open window" onclick="openWin()" />
答案 3 :(得分:0)
试试这个
<nav>
<ul>
<li><a href="#">button</a></li>
</ul>
</nav>
这就是css
nav
{
position:fixed;
bottom:350px;
left:600px;
}
nav ul ul {
display: none;
}
nav ul li:hover > ul {
display: block;
}
nav ul {
background: #FFD700;
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
padding: 0 20px;
border-radius: 10px;
list-style: none;
position: relative;
display: inline-table;
color:black;
}
nav ul:after {
content: ""; clear: both; display: block;
}
nav ul li {
float: left;
}
nav ul li:hover {
background: #FFD700;
color:white;
}
nav ul li:hover a {
color:black;
}
nav ul li a {
display: block; padding: 25px 40px;
color: maroon; text-decoration: none;
}
nav ul ul {
background: #CFB53B;border-radius: 0px; padding: 0;
position: absolute; top: 100%;
}
nav ul ul li {
float: none;
border-top: 1px solid #6b727c;
border-bottom: 1px solid #575f6a;
position: relative;
}
nav ul ul li a {
padding: 15px 40px;
color: #fff;
}
nav ul ul li a:hover {
background: #996515;
}
答案 4 :(得分:0)
<a href = "https://stackoverflow.com/"><button type = 'submit' class = 'btn'>Let's Go Home</button></a>
我们也可以使用标签。我们只需要删除按钮外观的文本装饰。像这样的东西。