首頁 > web前端 > js教程 > 主體

JS實作div點擊跳到另一頁面實例代碼

小云云
發布: 2018-01-27 14:42:53
原創
5673 人瀏覽過

本文主要介紹了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學習者快速成長!