最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to concatenate a new value from an existing attribute value using Jquery? - Stack Overflow

programmeradmin2浏览0评论

sorry for the question title if it confusing to you. My simple problem is I have an HTML element with an attribute. But I want to concatenate a new value using an event which is onclick. After the user clicked the link the element attribute will be concatenated with my new value ing from my jquery value.

Here's the sample code. By the way I am using smarty.

<a href="products.search.advance&search_by=" class="w024 h024 ml006 b08 u003 d2 f1" id="call_dispatch">

$("#call_dispatch").click(function()
    {ldelim}

        var dispatch_value = $("#dispatch").val();
        var menu = dispatch_value + "|fn_url";

        $('#call_dispatch').attr('href',menu);

        var x = $('#call_dispatch').attr('href');
        alert(x);

    {rdelim}    
);

Now as you have seen in the href attribute I have a search by value. Now my problem is I need to concatenate this with the var menu value in my jquery. But I don't know how. Please help me guys. Thanks.

sorry for the question title if it confusing to you. My simple problem is I have an HTML element with an attribute. But I want to concatenate a new value using an event which is onclick. After the user clicked the link the element attribute will be concatenated with my new value ing from my jquery value.

Here's the sample code. By the way I am using smarty.

<a href="products.search.advance&search_by=" class="w024 h024 ml006 b08 u003 d2 f1" id="call_dispatch">

$("#call_dispatch").click(function()
    {ldelim}

        var dispatch_value = $("#dispatch").val();
        var menu = dispatch_value + "|fn_url";

        $('#call_dispatch').attr('href',menu);

        var x = $('#call_dispatch').attr('href');
        alert(x);

    {rdelim}    
);

Now as you have seen in the href attribute I have a search by value. Now my problem is I need to concatenate this with the var menu value in my jquery. But I don't know how. Please help me guys. Thanks.

Share Improve this question asked Oct 29, 2013 at 9:10 JerielleJerielle 7,55029 gold badges103 silver badges168 bronze badges 2
  • what is $("#dispatch") ? is it a textbox or label or another 'a' tag ? – Ranadheer Reddy Commented Oct 29, 2013 at 9:14
  • it is a select option box. – Jerielle Commented Oct 29, 2013 at 10:04
Add a ment  | 

3 Answers 3

Reset to default 5
 var x = $('#call_dispatch').attr('href');
 $('#call_dispatch').attr('href',x+menu);

.attr( attributeName, function(index, attr) )

$('#call_dispatch').attr('href', function(index, attr) {
    return attr + menu;
});

There is another way to do it. You have to append thet search text to your anchor tag's href when you change the selection.

consider you have select options like below

<select id="dispatch">
    <option value="first">first</options>
    <option value="second">second</options>
    <option value="third">third</options>
</select>

and your anchor tag is

<a href="products.search.advance&search_by=" class="w024 h024 ml006 b08 u003 d2 f1" id="call_dispatch">

now use the following code

$("#dispatch").change(function(){

var dispatch_value = $("#dispatch").val();

var menu = dispatch_value + "|fn_url";

    $('#call_dispatch').attr('href',menu);

    var x = $('#call_dispatch').attr('href');
    alert(x);

});

i created a fiddle. please look at this: http://jsfiddle/codingsolver/bJ4nw/1/

hope it helps you.

发布评论

评论列表(0)

  1. 暂无评论