假设我有以下链接和下拉列表:
<a href="#contact">Send a mail to mother!</a>
<a href="#contact">Send a mail to father!</a>
<a href="#contact">Send a mail to sister!</a>
<a href="#contact">Send a mail to brother!</a>
<form id="contact">
<select id="recipient">
<option value="mother@mail.com">Mother</option>
<option value="father@mail.com">Father</option>
<option value="sister@mail.com">Sister</option>
<option value="brother@mail.com">Brother</option>
</select>
</form>
基本上我希望每个链接都更改为相应的选择选项。
为了给你一个上下文,现在我在页面的末尾有一个表单,并且在开始时我有几个电子邮件链接。当有人点击链接时,它会滚动(锚定)到表单。表单具有此下拉列表以选择收件人。我希望它不仅可以滚动到表单(已经完成),还可以根据点击的链接自动更改选项。
我怎样才能做到这一点?
答案 0 :(得分:4)
为这些链接添加data-select
属性:
<a href="#contact" data-select="mother@mail.com">Send a mail to mother!</a>
<a href="#contact" data-select="father@mail.com">Send a mail to father!</a>
<a href="#contact" data-select="sister@mail.com">Send a mail to sister!</a>
<a href="#contact" data-select="brother@mail.com">Send a mail to brother!</a>
然后使用单击链接的值来设置select
元素的值:
var $select = $('#recipient');
$('a[href="#contact"]').click(function () {
$select.val( $(this).data('select') );
});
这是小提琴:http://jsfiddle.net/Dw6Yv/
如果您不想将这些data-select
属性添加到标记中,可以使用:
var $select = $('#recipient'),
$links = $('a[href="#contact"]');
$links.click(function () {
$select.prop('selectedIndex', $links.index(this) );
});
这是小提琴:http://jsfiddle.net/Bxz24/
请注意,这会要求您的链接与select
选项的顺序完全相同。
答案 1 :(得分:3)
如果订单始终相同,则可以执行此操作
$("a").click(function(){
$("#recipient").prop("selectedIndex", $(this).index());
});
否则通过在链接上定义索引来执行此操作:
<a href="#contact" data-index="0">Send a mail to mother!</a>
<a href="#contact" data-index="1">Send a mail to father!</a>
<a href="#contact" data-index="2">Send a mail to sister!</a>
<a href="#contact" data-index="3">Send a mail to brother!</a>
<form id="contact">
<select id="recipient">
<option value="mother@mail.com">Mother</option>
<option value="father@mail.com">Father</option>
<option value="sister@mail.com">Sister</option>
<option value="brother@mail.com">Brother</option>
</select>
</form>
$("a").click(function(){
$("#recipient").prop("selectedIndex", $(this).data("index"));
});
答案 2 :(得分:1)
另外there is another way使用label
选项,这肯定也可以不使用html5 data
。