在页面上,我想在单击链接后在现有URL后面添加锚。因此,举例来说,我目前在页面中的网址是www.google.nl,单击链接后,它的网址应该是www.google.nl/#anchor。 我该怎么办?
第二个问题:
如果我单击产品链接(WooCommerce产品网格),我想避免进入该页面,而是要有一个获取产品URL并将其传递给该函数的函数:
jQuery(document).ready(function(){
jQuery("a").click(function(){
jQuery("#bestellen").load("dynamic URL here got from the product I clicked on");
});
});