Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 wordpress 插件产品和自定义帖子类型 Dropdown CF7,它允许我们显示来自 Woocommerce 的产品下拉列表。我想将第一个选项添加为“选择产品”。我怎样才能做到这一点?请帮忙。
找到了解决方案。可以这样做:
var data = { id: 1, text: 'Barn owl' }; var newOption = new Option(data.text, data.id, false, false); $('#mySelect2').append(newOption).trigger('change');