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.
我正在为自定义选择框使用 Rian Fait 的脚本。1 框右侧有一个小的重置按钮,用于触发 jquery 脚本:
$('.reset_select').click(function(){ $(this).siblings('select').prop("selectedIndex", 0); return false; });
这很好地重置了实际的选择框,但不会更新跨度标记中的文本。(它取代了选择框以获得更好的样式)
有没有人有想法!
谢谢托比
使用页面上的 Firebug 找到选择框的实际标签所在的字段,然后您可以将其添加到脚本中。