将jQuery选择器存储到字符串中并使用它

时间:2015-08-12 12:54:40

标签: javascript java jquery string return

我想将jQuery选择器存储在一个名为" jQuerySelector"的字符串变量中。在Java中是:

$('h3.icon').parents('.head').find('h5:contains(Input)')

然后按如下方式使用:

String result = "return $(\"" + jQuerySelector + "\").get(0);"; 

我在初始化" jQuerySelector"时遇到语法错误如下并运行:

String jQuerySelector = "('h3.icon').parents('.head').find('h5:contains(Input)')";

我唯一的要求是将上面的选择器查询存储到一个字符串中,然后用它来运行上面的return语句。

有人可以帮帮我吗?

0 个答案:

没有答案