在HTML内容字符串上使用JQuery选择器

时间:2013-10-25 01:20:48

标签: jquery asp.net-mvc

我有一串HTML内容,我将从ASP.MVC作为部分视图返回。我不想在页面的任何地方呈现它,而是我想使用JQuery从HTML返回的内容中选择某些元素并使用它来执行操作。

是否可以以这种方式使用JQuery选择器而不在页面上呈现HTML?

1 个答案:

答案 0 :(得分:2)

是的,你可以。

var html = '';
var $html = $(html);
//then do normal stuff with $html like
$html.find('input[name="x"]').val();//will get the value of the input with name x
$html.find('.tester').text();//will get the text content of element with class tester