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">
這可能嗎?和什麼解決方案?