我想打开一个预定的网页,并在打开时对其执行点击事件。
举个例子,这是我用google强力搜索做的一个实验:
$("#lnkSearch").click(function() {
console.log("you clicked Search");
$(this).attr("target", "_blank");
// build the search
var search = $("#txtSearch").val();
search = search + "+site%3Aloganyoung.za.net";
$(this).attr("href", "http://www.google.com/search?q=" + search);
//window.open($(this).attr("href"));
});
现在要加上这一点,我想到了自动打开搜索结果中的第一个链接。
在打开它之前,有没有办法在新窗口中执行此操作?