您可以使用JavaScript在页面加载时触发事件。下面的示例使用jQuery.
$(document).ready(function () {
// Select a link by ID
$(\'#specific-link\').trigger(\'click\');
// Select the first link with a certain class
$(\'a.thickbox\').first().trigger(\'click\');
});
http://api.jquery.com/trigger/