0

假设我有以下链接和下拉列表:

<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>

基本上我希望每个链接都更改为相应的选择选项。

给你一个上下文,现在我在页面末尾有一个表格,一开始我有几个电子邮件链接。当有人单击链接时,它会滚动(锚定)到表单。该表单具有此下拉菜单以选择收件人。我希望它不仅可以滚动到表单(已经完成),而且还可以根据单击的链接自动更改选项。

我怎样才能做到这一点?

4

3 回答 3

5

为这些链接添加一个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

于 2013-02-06T19:53:14.897 回答
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"));
});
于 2013-02-06T19:50:28.417 回答
1

还有另一种使用label选项的方法,可以确保在没有 html5 的情况下也可以使用data

于 2013-02-06T20:00:53.033 回答