admin管理员组文章数量:1346323
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 .
- 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
2 Answers
Reset to default 3Try 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);
本文标签: javascriptValue of the Object HtmlInputElementStack Overflow
版权声明:本文标题:javascript - Value of the Object HtmlInputElement - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830334a2546400.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论