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

javascript - Value of the Object HtmlInputElement - Stack Overflow

programmeradmin1浏览0评论

In my .html file I have one button and string variable str = "<input type=\"text\" value=\"apple\"" . When i click button i want to alert value of these string . How can i parse string to object and just use something like obj.val() or obj.value to get it's value . I've tried $.parseHTML(str) . it returns me Object HtmlInputElement , but i can't use .val() or .value , even .attr('value') ? Jquery is added and no errors . Please help . Best Regards .

In my .html file I have one button and string variable str = "<input type=\"text\" value=\"apple\"" . When i click button i want to alert value of these string . How can i parse string to object and just use something like obj.val() or obj.value to get it's value . I've tried $.parseHTML(str) . it returns me Object HtmlInputElement , but i can't use .val() or .value , even .attr('value') ? Jquery is added and no errors . Please help . Best Regards .

Share Improve this question asked Jul 9, 2015 at 8:35 Daulet CheriDaulet Cheri 571 gold badge1 silver badge5 bronze badges 2
  • 1 Can you please post your actual code. – Rory McCrossan Commented Jul 9, 2015 at 8:36
  • You need to create jquery object to use .val() or .attr(), see below answer – Bhushan Kawadkar Commented Jul 9, 2015 at 8:48
Add a ment  | 

2 Answers 2

Reset to default 3

Try this: create jquery object from str and then call .val() on that object, see below code

str = "<input type=\"text\" value=\"apple\">";
var strObj = $(str);
alert(strObj.val());

JSFiddle Demo

If you put your input in your actual html file, and give it an id (e.g. appleInput):

<input type="text" value="apple" id="appleInput"> <!-- Your input -->

Then in your JavaScript:

var str = document.getElementById("appleInput").value;
alert(str);
发布评论

评论列表(0)

  1. 暂无评论