首页 > web前端 > js教程 > 正文

JS实现div点击跳转到另一页面实例代码

小云云
发布: 2018-01-27 14:42:53
原创
5628 人浏览过

本文主要介绍了JS动态添加的p点击跳转到另一页面实现代码,需要的朋友可以参考下,希望能帮助到大家。

 p调用函数跳转:


var obj = document.getElementById('id');
obj.onclick=function(){ 
  window.location.href="跳转的地址" rel="external nofollow" ;      
 }
登录后复制

源文件:


<!DOCTYPE html>
<html>
<head>
  <title>首页推荐页面</title>
  <meta name="author" content="Chunna.zheng"/>
  <meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8"/>
  <style type="text/css">
    p.recommendclass {
      width: 100%;
      height: 60px;
      line-height: 60px;
      vertical-align: middle;
      font-size: 18px;
      text-align: center; /*文字水平居中对齐*/
      background-color: #f5f5f5;
    }
    .mall_contentChild1Class {
      display: inline;
      width: 40%;
      height: 100px;
      background-color: #f5f5f5;
    }
    .mall_contentChild2Class {
      display: inline;
      width: 60%;
      height: 100px;
      float: right;
      position: relative;
      background-color: #f5f5f5;
    }
    .mall_contentChild2BottomClass {
      display: table-cell;
      width: 90%;
      vertical-align: bottom;
      position: absolute;
      left: 5px;
      bottom: 5px;
      background-color: #f5f5f5;
    }
    .mall_Child2TextLeftClass {
      line-height: 16px;
      vertical-align: bottom;
      background-color: #f5f5f5;
    }
    .mall_Child2TextRightClass {
      float: right;
      color: #f3b041;
      font-size: 25px;
      line-height: 26px;
      vertical-align: bottom;
      background-color: #f5f5f5;
    }
    .news_title {
      display: block;
      font-size: 18px;
      vertical-align: center;
      background-color: #f5f5f5;
    }
    .news_message {
      display: block;
      font-size: 14px;
      vertical-align: center;
      background-color: #f5f5f5;
    }
    .news_time {
      display: block;
      font-size: 12px;
      vertical-align: bottom;
      position: absolute;
      bottom: 5px;
      right: 5px;
      background-color: #f5f5f5;
    }
  </style>
</head>
<body style="margin: 0; padding: 0 ">
<p id="mall_news" class="recommendclass">新闻咨讯</p>
<p id="news_content" style="background-color:#f5f5f5"></p>
<script>
  var Shu = 2;
  var df = document.createElement("p");
  for (var i = 0; i <= Shu; i++) {
    var op = document.createElement("p");
    var pChild1 = document.createElement("p");
    pChild1.className = &#39;mall_contentChild1Class&#39;;
    var img = document.createElement("img");
    img.style.width = "130px";
    img.style.height = "100px";
    img.src = &#39;ic_mall_good_stuff.jpg&#39;;
    pChild1.appendChild(img);
    op.appendChild(pChild1);
    var pChild2 = document.createElement("p");
    pChild2.className = &#39;mall_contentChild2Class&#39;;
    var text1 = document.createElement("span");
    text1.className = &#39;news_title&#39;;
    text1.innerHTML = "我是标题";
    pChild2.appendChild(text1);
    var bottomp = document.createElement("p");
    var textLeft = document.createElement("span");
    textLeft.className = &#39;news_message&#39;;
    textLeft.innerHTML = "我是内容";
    bottomp.appendChild(textLeft);
    var textRight = document.createElement("span");
    textRight.className = &#39;news_time&#39;;
    textRight.innerHTML = "2017.09.23";
    bottomp.appendChild(textRight);
    pChild2.appendChild(bottomp);
    op.appendChild(pChild2);
    //添加点击事件
    op.onclick = function(){
      window.location.href="file:///android_asset/news.html" rel="external nofollow" ;
    }
    df.appendChild(op);
  }
  document.getElementById("news_content").appendChild(df);
</script>
</body>
</html>
登录后复制

相关推荐:

微信小程序函数节流多次点击跳转如何防止

JS怎样可以做到点击跳转到登陆的个人邮箱

Mui使用jquery并且使用点击跳转新窗口示例分享

以上是JS实现div点击跳转到另一页面实例代码的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!