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.
我在 html 中有下拉列表,其值为 a、b、c、d
我想提交一份关于选择值的表格。
我知道我可以使用
。改变()
方法。
但是,如果我每次都选择相同的值,它将不起作用。
我努力了
。点击()
但它在 Chrome 中不起作用
由于您的要求是您需要能够获得相同的选定值,您可以试试这个。这很丑陋,但它会完成工作。
$("select").mousedown(function() { });
请记住,这将在您每次单击列表时触发。我强烈建议修改要求,在列表顶部添加一个空白选项作为默认选项。