2014-03-12 46 views
1

我是JavaScript新手。

問題如下:
我在我的html文件中有10 div。我正在使用鏈接從一個到另一個。現在,我想測試它是否滿足的條件(我用python此),應我重定向到另一個div相同的HTML中。但我希望這是自動的。例如,我在<div id="table1">裏面,我正在檢查一個條件。如果這是真的,我應該自動重定向到<div id="table3">

任何人都可以幫我找到出路嗎?

谷歌,當我試圖尋找它,它給我的結果,我必須點擊重定向按鈕(這將調用JS功能)。但我不想那樣。我希望它自動發生。所以,請告訴。無需用戶干預即可自動重定向到div


<div id="table5"> <div style="position:fixed;right:40px;top:65px;"> <a name="t10" href="#t10" onclick='show(10);'><button> GO TO MAIN PAGE </button></a> </div> % if not obj.i: <h2>REDIRECT ME TO id="table3"</h2> % else: <table border=1 cellpadding=7> <tr> <th>Row No. in Sheet</th> <th>Parameters</th> </tr> <tr> <th colspan=2>Total : ${value}</th> </tr> </table> % endif </div>

+0

添加你的代碼嗎? – halkujabra

+0

在裏面我正在檢查一個條件...你是什麼意思? – laaposto

+0

添加代碼的帖子:) – Gauranga

回答

0

我不會搜索代碼爲您服務。但大多數網站告訴你,你需要一個onclick事件,因爲需要打開一個鏈接。而example.com #idOfDiv,就是你打開的那種鏈接。 Howerver,還有另外一種可能性。

尋找一些JavaScript代碼來決定在x and y coordinats元素的位置。獲得後,製作JS Scroll;)。

0
<div id="table5"> 
    <div style="position:fixed;right:40px;top:65px;"> 
     <a name="t10" href="#t10" onclick='show(10);'><button> GO TO MAIN PAGE </button></a> 
    </div> 
    % if not obj.i: 
     <script>window.location="#table6"</script> // redirect 
    % else: 
     <table border=1 cellpadding=7> 
      <tr> 
       <th>Row No. in Sheet</th> 
       <th>Parameters</th> 
      </tr> 
      <tr> 
       <th colspan=2>Total : ${value}</th> 
      </tr> 
     </table> 
    % endif 
</div> 
+0

可以給予好評太:) – halkujabra

+0

它不工作:( – Gauranga

+0

@Gauranga錯誤?更新的代碼?任何更多的信息? – halkujabra

相關問題