网页或h5——跳转网页例子
作者:
我是Alex | 来源:发表于
2020-04-23 16:08 被阅读0次
image.png
<!-- 跳转网页例子 -->
<div class="commonsignInfo_row" onclick="tohref(1)">
<a href="javascript:tohref(0)" class="looksign">查看报名</a>
</div>
<script type="text/javascript">
//跳转页面方法
function tohref(type){
// 条件少(<=2)if
if(type){
location.href="forms.html"
}else{
location.href="banner.html"
}
// 条件多(>2)switch
switch (type) {
case 0:
location.href="forms.html";
break;
case 1:
location.href="banner.html";
break;
}
}
</script>
<!-- 跳转到一个网页页面时 -->
<div class="moreSubmitBtn" onclick="tohref()">
<a href="javascript:tohref()">保存</a>
</div>
<script type="text/javascript">
//跳转页面方法
function tohref(){
location.href="commonsign.html"
}
</script>
本文标题:网页或h5——跳转网页例子
本文链接:https://www.haomeiwen.com/subject/chuaihtx.html
网友评论