div의 JS 구현을 클릭하면 다른 페이지 예제 코드로 이동합니다.

小云云
풀어 주다: 2018-01-27 14:42:53
원래의
5673명이 탐색했습니다.

이 글은 주로 JS가 추가한 다른 페이지로 이동하기 위한 p 클릭을 구현하는 코드를 소개합니다. 필요한 친구들이 참고하면 도움이 될 것입니다.

pCall 기능 점프:


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>
로그인 후 복사

관련 권장 사항:

WeChat 애플릿 기능 조절 다중 클릭 점프를 방지하는 방법

어떻게 될까요? JS Click으로 완료 로그인된 개인 메일함으로 이동하려면

Mui는 jquery를 사용하고 클릭하면 새 창으로 이동하여 공유할 수 있습니다.

위 내용은 div의 JS 구현을 클릭하면 다른 페이지 예제 코드로 이동합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!