2014-01-26 63 views
0

我有2個網站,名爲SiteA的第一個網站和第二個網站命名爲SiteB。 SiteA有鏈接,我想要那些鏈接,點擊它將執行SiteB jQuery中的操作。通過其他網站的鏈接運行jquery動作?

站點A鏈接:

<a class="btn btn-danger btn-lg start-vendor" href="#modal"><i class="fa fa-gift"></i>Apa yang akan Anda dapatkan?</a> 

SiteB中有2 <div>

1.

<div id="user-page" class="fitures"> 
<! - Some of the content -> 
</ div> 

2.

<div id="vendor-page" class="fitures" style="display:none;"> 
<! - Some of the content -> 
</ div> 

我在SiteB中一個jquery動作:

$('.start-vendor').click(function() { 
    $("#vendor-page").fadeIn().show(); 
    $("#user-page").fadeOut().hide(); 
    $('html, body').animate({ 
     scrollTop: $("#one-vendor").offset().top+10 
    }, 2000, function() { 
}); 
return false; 
}); 

當鏈接(上圖)在站點A與類second點擊它會去網站B和運行動作<div id="user-page"> jQuery來隱藏然後顯示<div id="user-page">

這可能嗎?和什麼解決方案?

回答

1

您需要在URL中使用散列。

,如果你想在用戶頁面打開,以便用戶發送至:

www.mysite.com/#user-page

然後在站點B讀取JS哈希:

window.location.hash 

然後打開你想要的。

相關問題