gpt4 book ai didi

javascript - 使用 jQuery 单击链接

转载 作者:太空狗 更新时间:2023-10-29 14:44:13 25 4
gpt4 key购买 nike

我制作了一个小脚本,但我想知道是否可以仅使用 jQuery 触发页面上的链接。

JS

var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}

$('a.more').each(function() {
var self = this;

if (vars['deeplink'] == 'true') {
/* this must trigger the link and that will trigger $(self).click */
}

$(self).click(function() {
var theid = self.href.split('#').pop();
var row = document.getElementById('info-art' + theid);
var now = typeof(row.style.display) != 'undefined' ? row.style.display : 'none';
$('tr.info').each(function() { this.style.display = 'none'; });
if (now == 'none') {
row.style.display = $.browser.msie ? 'block' : 'table-row';
}
});
});

HTML

<td><a class="more" href="#8714681006955">[+]</a></td>

最佳答案

$( selector ).click()

jQuery docs :

When .click() is called without arguments, it is a shortcut for .trigger("click").

关于javascript - 使用 jQuery 单击链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13955001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com