javascript - value from span to input - Stack Overflow

I have value that is displayed in span tag. If i want to post the value i have to assign that value to

I have value that is displayed in span tag. If i want to post the value i have to assign that value to an input. So this is the code i have written to assign value to input and trying to post that value. But when i alert the assigned value its showing as

[object Object] 

Pls check the code and correct me.

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower);

and i tried this also

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower);

Both the above code shows

[object Object] 

Because of this i am not able to post values.

I have value that is displayed in span tag. If i want to post the value i have to assign that value to an input. So this is the code i have written to assign value to input and trying to post that value. But when i alert the assigned value its showing as

[object Object] 

Pls check the code and correct me.

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower);

and i tried this also

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower);

Both the above code shows

[object Object] 

Because of this i am not able to post values.

Share Improve this question asked Jan 7, 2016 at 6:52 Varuni N RVaruni N R 8023 gold badges13 silver badges32 bronze badges 2
  • you can use console.log to check object instead of alert – user5570620 Commented Jan 7, 2016 at 6:54
  • Obviously, its object which is stored in lower.. Console.log(lower) to see in detail.. – Guruprasad J Rao Commented Jan 7, 2016 at 6:55
Add a ment  | 

6 Answers 6

Reset to default 4

That is because the value setter function on an input return the jQuery object of that input element only, it allows you to chain the event.

Try this

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower.val());

Read more about it here http://api.jquery./val/#val-value

"lower" is an object. if you want to see the text inside, you need to call lower.val(). e.g.

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower.val());

jQuery supports chaining objects return.

So, whenever you do an operation on an object (except some like .val() getter, it returns object of that selector element.

So, you can do much more operations in a single statement.

In your statement,

var lower=$("#inputElement").val(value);
alert(lower);,

It is returning the object of element #lower.

You can add more operations to it.

For example:

var lower=$("#inputElement").val(value).css('color', 'red');

You want only plain value.

So, rather you should do this:

var value = $("#spanElement").text();
$("#inputElement").val(value);
var lower=$("#inputElement").val();
alert(lower);

Just do in this way..

var span_text = $("#spanElement").text(); //get span text
$("#inputElement").val(span_text); //set span text to input value
var input_value = $("#inputElement").val(); //get input value
alert(input_value); //alert input value

Hope this will help

This is because it will return a jQuery object . If you want to see the same text which is in the input you can either use .val() like answered previously or use like this

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert($("#spanElement").prop('innerHTML'));

WORKING DEMO

You are getting 'Object Object' because lower is an object if you want to get the text you need to perform below actions.

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower.val());

Or

var value = $("#spanElement").text();
var lower=$("#inputElement").val(value);
alert(lower.val());

Hope it helps !

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743643787a4483409.html

相关推荐

  • javascript - value from span to input - Stack Overflow

    I have value that is displayed in span tag. If i want to post the value i have to assign that value to

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信