0
如何實現點擊1頁上的鏈接按鈕(比如index.html),以及何時瀏覽其他網頁(比如dream.html),點擊該頁面上的按鈕,使用Jquery?不同頁面上的多次點擊事件
如何實現點擊1頁上的鏈接按鈕(比如index.html),以及何時瀏覽其他網頁(比如dream.html),點擊該頁面上的按鈕,使用Jquery?不同頁面上的多次點擊事件
將一個jQuery腳本在網頁「dream.html」當頁面加載像你的鏈接點擊:在URL
$(document).ready(function(){
$('#link').click();
});
傳遞參數,如果存在該參數觸發你的作品。
您的網址
http://dream.html?sent=yes
檢查PARAM
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
};
如果存在:
var param = getUrlParameter('sent');
if(param !== '')
$('#dreampageID').trigger("click");
注意:不要這裏面的document.ready,不要忘了包括jQuery的librery。
getUrlParameter取自here