JS動(dòng)態(tài)添加的div點(diǎn)擊跳轉(zhuǎn)到另一頁(yè)面實(shí)現(xiàn)代碼
div調(diào)用函數(shù)跳轉(zhuǎn):
var obj = document.getElementById('id'); obj.onclick=function(){ window.location.href="跳轉(zhuǎn)的地址" rel="external nofollow" ; }
源文件:
<!DOCTYPE html> <html> <head> <title>首頁(yè)推薦頁(yè)面</title> <meta name="author" content="Chunna.zheng"/> <meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8"/> <style type="text/css"> div.recommendclass { width: 100%; height: 60px; line-height: 60px; vertical-align: middle; font-size: 18px; text-align: center; /*文字水平居中對(duì)齊*/ 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 "> <div id="mall_news" class="recommendclass">新聞咨訊</div> <div id="news_content" style="background-color:#f5f5f5"></div> <script> var Shu = 2; var df = document.createElement("div"); for (var i = 0; i <= Shu; i++) { var oDiv = document.createElement("div"); var divChild1 = document.createElement("div"); divChild1.className = 'mall_contentChild1Class'; var img = document.createElement("img"); img.style.width = "130px"; img.style.height = "100px"; img.src = 'ic_mall_good_stuff.jpg'; divChild1.appendChild(img); oDiv.appendChild(divChild1); var divChild2 = document.createElement("div"); divChild2.className = 'mall_contentChild2Class'; var text1 = document.createElement("span"); text1.className = 'news_title'; text1.innerHTML = "我是標(biāo)題"; divChild2.appendChild(text1); var bottomDiv = document.createElement("div"); var textLeft = document.createElement("span"); textLeft.className = 'news_message'; textLeft.innerHTML = "我是內(nèi)容"; bottomDiv.appendChild(textLeft); var textRight = document.createElement("span"); textRight.className = 'news_time'; textRight.innerHTML = "2017.09.23"; bottomDiv.appendChild(textRight); divChild2.appendChild(bottomDiv); oDiv.appendChild(divChild2); //添加點(diǎn)擊事件 oDiv.onclick = function(){ window.location.href="file:///android_asset/news.html" rel="external nofollow" ; } df.appendChild(oDiv); } document.getElementById("news_content").appendChild(df); </script> </body> </html>
總結(jié)
以上所述是小編給大家介紹的JS動(dòng)態(tài)添加的div點(diǎn)擊跳轉(zhuǎn)到另一頁(yè)面實(shí)現(xiàn)代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
- js實(shí)現(xiàn)的點(diǎn)擊div區(qū)域外隱藏div區(qū)域
- js點(diǎn)擊頁(yè)面其它地方將某個(gè)顯示的DIV隱藏
- js點(diǎn)擊彈出div層實(shí)現(xiàn)可拖曳的彈窗效果
- JavaScript鼠標(biāo)事件,點(diǎn)擊鼠標(biāo)右鍵,彈出div的簡(jiǎn)單實(shí)例
- Javascript點(diǎn)擊其他任意地方隱藏關(guān)閉DIV實(shí)例
- JS實(shí)現(xiàn)點(diǎn)擊按鈕控制Div變寬、增高及調(diào)整背景色的方法
- js實(shí)現(xiàn)點(diǎn)擊按鈕后給Div圖層設(shè)置隨機(jī)背景顏色的方法
- javascript實(shí)現(xiàn)鼠標(biāo)點(diǎn)擊頁(yè)面 移動(dòng)DIV
- javascript實(shí)現(xiàn)點(diǎn)擊按鈕讓DIV層彈性移動(dòng)的方法
- js實(shí)現(xiàn)點(diǎn)擊生成隨機(jī)div
相關(guān)文章
寫(xiě)了10年的Javascript也未必全了解的連續(xù)賦值運(yùn)算
很喜歡 蔡蔡 的這個(gè)標(biāo)題,實(shí)際蔡蔡已經(jīng)分析過(guò)了,這里借用了。或許有點(diǎn)標(biāo)題黨的意思。看完就知了。2011-03-03圖片img的src不變讓瀏覽器重新加載實(shí)現(xiàn)方法
圖片img的src不變,想讓瀏覽器重新加載怎么辦,在圖片地址src不變的情況下讓瀏覽器重新加載圖片,實(shí)際上在src不變時(shí),瀏覽器直接就去讀取緩存2013-03-03淺析TypeScript中的類(lèi)型檢查與錯(cuò)誤捕獲
類(lèi)型檢查是一種靜態(tài)分析的過(guò)程,用于驗(yàn)證變量、函數(shù)和表達(dá)式的類(lèi)型是否符合預(yù)期,這篇文章主要來(lái)和大家聊聊TypeScript中類(lèi)型檢查與錯(cuò)誤捕獲的相關(guān)知識(shí),希望對(duì)大家有所幫助2023-06-06利用JQuery和JS實(shí)現(xiàn)奇偶行背景顏色自定義效果
本文將詳細(xì)介紹利用JQuery和JS實(shí)現(xiàn)奇偶行背景顏色自定義效果,需要的朋友可以參考下2012-11-11js高手進(jìn)階實(shí)用語(yǔ)法的高級(jí)寫(xiě)法
這篇文章主要介紹了js高手進(jìn)階實(shí)用語(yǔ)法的高級(jí)寫(xiě)法的相關(guān)資料,需要的朋友可以參考下2023-08-08詳解js獲取video任意時(shí)間的畫(huà)面截圖
這篇文章主要介紹了js獲取video任意時(shí)間的畫(huà)面截圖,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-04-04