纯HTML方式是将其放入
<form>,您可以在其中指定所需的目标URL
action。
<form action="https://google.com"> <input type="submit" value="Go to Google" /></form>
如有必要,请
display: inline;在表单上设置CSS ,以使其与周围的文本保持一致。除了
<inputtype="submit">上面的示例,您还可以使用
<button type="submit">。唯一的区别是该
<button>元素允许孩子。
直观上,您希望能够使用
<buttonhref="https://google.com">与
<a>元素类似的元素,但不幸的是,根据HTML规范,此属性不存在。的CSS
如果允许使用CSS,则只需使用
<a>您设置的样式即可看起来像按钮,并使用
appearance属性(仅Internet
Explorer不支持)。
<a href="https://google.com" >Go to Google</a>a.button { -webkit-appearance: button; -moz-appearance: button; appearance: button; text-decoration: none; color: initial;}
或者选择众多CSS库之一,例如Bootstrap。
的Javascript<a href="https://google.com" >Go to Google</a>
如果允许使用Javascript,请设置
window.location.href。
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
除了
<input type="button">上面的示例,您还可以使用
<button>。唯一的区别是该
<button>元素允许孩子。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)