Open external links in a new jQuery window, and link in a new jquery window
For external links, to retain users on this site, we usually open them in a new window. You can set target = "_ blank ". However, manual operations are troublesome, while other operations may be omitted. In this article, you can use jQuery to query the link to be clicked and add relevant attributes to open a new window.
$ (Document ). on ('click', 'A', function () {var url = this. href, hash = ''; if (url. indexOf ('#')>-1) {hash = !! Url. split ('#') [1]? '#' + Url. split ('#') [1]: ''; url = url. split ('#') [0];} if (url & url. substr (0, 4) = 'http' & url. indexOf ('caibaojian. com ') <0) {this. href = url. indexOf ('? ')>-1? Url + '& utm_source = caibaojian.com' + hash: url + '? Utm_source = caibaojian.com '+ hash; this. setAttribute ('target',' _ blank ');}})
The above is the external link opened in the new jQuery window introduced by xiaobian. I hope it will help you. If you have any questions, please leave a message and I will reply to you in time. Thank you very much for your support for the help House website!