开发者

Fill in Input Field by Clicking Link with JQuery

开发者 https://www.devze.com 2023-02-24 05:15 出处:网络
How might someone fill in an input field with some text using jquery by clicking that text? The text is generated dynamically so the value is not know ahead of time.

How might someone fill in an input field with some text using jquery by clicking that text?

The text is generated dynamically so the value is not know ahead of time.

For example with:

<input id="a_input_id" type="text">
<a href="#" class="special_field_link">@r.SpecialField<a>

When someone clicks that link the text field with be populated with the value of开发者_运维问答 @r.SpecialField


HTML:

<input id="a_input_id" type="text">
<a href="#" class="special_field_link">@r.SpecialField<a>

JS:

$(function(){
    $('.special_field_link').live('click', function() {
        $("#a_input_id").val($(this).html());
    });
});

Also, you can use .text() instead of .html() as listed in this answer: Fill in Input Field by Clicking Link with JQuery

Running Sample: http://fiddle.jshell.net/s8nUh/


Try this:

$(".special_field_link").click(function(){
 $("#a_input_id").val($(this).text());
});


$('a.special_field_link').live('click', function(e){
    $('#a_input_id').val(this.innerHTML);
    return false; // to prevent default
});
0

精彩评论

暂无评论...
验证码 换一张
取 消