将锚点添加到现有 url

Add anchor to existing url

在页面上,我想在单击 link 后在现有 URL 之后添加一个锚点。因此,例如,我目前所在页面中的 URL 是 www.google.nl,单击 link 后,它需要是 www.google.nl/#anchor。 我该怎么做?

第二题:

如果我单击一个产品link(WooCommerce 产品网格),我想阻止转到该页面并有一个函数可以获取产品的 URL 并将其传递给此函数:

jQuery(document).ready(function(){
    jQuery("a").click(function(){
        jQuery("#bestellen").load("dynamic URL here got from the product I clicked on");

    });
});

您可以像这样附加 on() click event with jQuery and change the href property with prop()

$('a.my-selector').on('click', function() {
    $(this).prop('href','https://example.com');
});