約會點擊,當我寫了一個代碼,在圖像上單擊時打開日期選擇器:
下面是截圖:
這裏是代碼:
HTML
重定向到新的頁面在日期選擇器
<div style="position: absolute; top: 127px; left: 31px;">Click
on image to enter period start date:</div>
<img src='./img/calendar.png' id="datepickerImage"
style="position: absolute; top: 160px; left: 126px; height: 75px;" />
javascript
$(document).ready(function() {
$("#datepicker").datepicker({
changeMonth : true,
changeYear : true,
}).hide().click(function() {
$(this).hide();
});
$("#datepickerImage").click(function() {
$("#datepicker").show();
});
});
datepicker成功打開。當點擊日期選擇器上的任何日期時,我希望它被重定向到下一頁。我該怎麼做?在這裏window.open http://www.w3schools.com/jsref/met_win_open.asp
http://jsfiddle.net/D4AGz/268/ –