我有这个 jQuery 代码:
$(document).ready(function() {
$(function () {
var austDay = new Date(2013, 10-1, 20, 10, 30);
$('#defaultCountdown').countdown({until: austDay});
});
$(".view").click(function() {
$("#popup").bPopup({
easing: 'easeOutBack',
speed: 600,
transition: 'slideDown'
});
});
});
它在一个名为 index.html 的文件中
我想在加载 HTML 时运行这部分:
$(".view").click(function() {
$("#popup").bPopup({
easing: 'easeOutBack',
speed: 600,
transition: 'slideDown'
});
});
后面需要写index.html
什么?