0

在 jquery 中,每次视频标签出现在字符串中时,我如何执行警报。我可以基于每个功能吗?假设该字符串名为“getTheCurrentResults”。

$(getTheCurrentResults["video"]).each(function ()
{
alert ("hello");
});
4

2 回答 2

2

我不知道 typegetTheCurrentResults是什么,但如果是 HTML,请使用烤过的解决方案。

如果不是,并且您有一个字符串并且您想对每个项目执行操作:

$.each('27426472247'.match(/7/g),function (i,n){alert(n)})

例如,这将在每个“7”上触发一个函数。

于 2013-07-08T10:53:27.083 回答
0

如果我理解你的问题:

$('<div />').html($.trim(getTheCurrentResults)).find('video').each(function ()
{
   alert ("hello");
});

您将字符串包装在 jquery 对象中,然后在 jq 对象上使用横向方法。

于 2013-07-08T10:52:58.083 回答