jquery预选择wordpress网站

时间:2015-11-07 13:15:41

标签: javascript php jquery html wordpress

我尝试过这些选项:

jQuery( document ).ready(function() {
    jQuery("#adv_actions_shortcode").val("verhuur");     
});

jQuery( document ).ready(function() {
    jQuery("#adv_actions_shortcode option[value=verhuur]").prop("selected", true);    
});

网址为http://makelaarcorrect.test.hetkanbeteronline.nl/woningaanbod-verhuur/

我必须忘记一些事情,任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

您使用的是非标准下拉菜单。这可能是一个插件或其他东西。您可以使用jQuery触发单击正确的元素,而不是使用以下代码。

jQuery("#adv_actions_shortcode").parent().find('[data-value="verkoop"]').trigger('click');