简体   繁体   中英

How to get the value of the text box from a HTML Coded String

i have a string like

var str='<input type="text" name="se_tbox" value="Beauty is Fake" />';

I want to get only the value of that input box which is stored in str as Beauty is Fake

is there anyway to get it?

$(str).val(); // this would do it...

看一看

var str='<input type="text" name="se_tbox" value="Beauty is Fake" />';
alert($(str).attr('value'));
// or
alert($(str).val());

You can use jquery

$('<input type="text" name="se_tbox" value="Beauty is Fake" />').val()

or regular expression

'<input type="text" name="se_tbox" value="Beauty is Fake" />'.match(/value="([^"]*)"/)[1]

你可以用这个:

$(str).val();

You shouldn't stringify your HTML to process it.
But if you have to, you can use a regexp to get the value:

var val = '<input value="Beauty is Fake" />'.match(/value="([^\"]+)/)[1];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM