2011-08-01 31 views
0

現狀:如何保持顯示屏上的當前幻燈片[JavaScript的滑塊]後提交按鈕被按下

我有一個網頁utilzing一個javascript滑塊[從scriptiny科網微小的滑塊。
我使用jQuery驗證和php驗證在最後一張幻燈片上創建了一個聯繫表單。
一切工作正常除了:
點擊提交後,網頁顯示第一張幻燈片。
不確定熱,使它堅持接觸「幻燈片」。

onclick="slideshow.pos(0) 
onclick="slideshow.pos(1) 
onclick="slideshow.pos(2) 
onclick="slideshow.pos(3) 
onclick="slideshow.pos(4) 

我需要接觸 「滑」 留在 「slideshow.pos(4)」:

網站導航使用字符串像做。

代碼:

//If there is no error, send the email 
if(!isset($hasError)){ 
    $emailTo = '[email protected]'; //Put your own email address here 
    $body = "Name: $name \n\nEmail: $email \n\nSubject: $subject \n\nComments:\n $comments"; 
    $headers = 'From: My Site <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email; 
    mail($emailTo, $subject, $body, $headers); 
    $emailSent = true; 
} 

我怎樣才能做到這一點?理想情況下,我可以在電子郵件發送完成後運行一些JavaScript,使頁面刷新將用戶發送到「slideshow.pos(4)」?
任何幫助,將不勝感激,

馬克

+0

你可以發佈你有問題的代碼嗎?所以SO可以更好地幫助你嗎? – afuzzyllama

回答

相關問題