English 中文(简体)
利用j Query与变式文本相匹配?
原标题:Use jQuery to match variable text?

我有一个旁边航行,把博客的条目排在一页的一侧。 我正试图写几句 j子,检查目前整个博客条目页标题中的文字,使其与旁边航行的相应名称相匹配,以便我能够用一个班子来打造一个积极的国家联系......但我不会忘记! http://ncw- commercial.com/property-listings/eastpoint-plaza-lot.html http://ncw- commercial.com/property-listings/eastpoint-plaza-lot.html,以下为现行法典。 我也尝试使用:内容,但无法说明如何以变数而不是直接案文开展工作。

$( .single-journal-entry-wrapper .journal-entry .title ).each(function(){ 
      var activeTitle = $(this).text();
      $(".feedburnerFeedBlock .headline a").filter(function(index) {
         return $(this).text() == "activeTitle";
      }).parent().addClass("activeTitle");
}); 
最佳回答

我认为你非常接近(假设遴选人是正确的)。 仅删除activeTitle 上的引文。 (否则,你将对照《<代码>活性标题>进行比较):

$( .single-journal-entry-wrapper .journal-entry .title a ).each(function(){ 
      var activeTitle = $(this).text();
      $("#sidebar1 .section .headline a").filter(function(index) {
         return $(this).text() == activeTitle;
      }).parent().addClass("activeTitle");
});

也可使用::contains(。 选择:

$( .single-journal-entry-wrapper .journal-entry .title a ).each(function(){ 
      var activeTitle = $(this).text();
      $("#sidebar1 .section .headline a:contains( " + activeTitle + " )")
      .parent().addClass("activeTitle");
});

该网页的链接并不大有助益。 我看不出你希望与这种联系相匹配的是什么标题。 职业介绍。

<>Update:

页: 1 问题在于,这两者之间的界限(标题和链接标题)都与because。 标题中有<代码>&nbsp; in which (Eastpoint Plaza&nbsp;Lot),在旁边没有链接。 虽然如果你打电话.text(),将这一条改为空白,但有些情况并不吻合。

现在可通过.html()查询和替换&nbsp;来解决。 a. 空间:

$( .single-journal-entry-wrapper .journal-entry .title a ).each(function(){ 
      var activeTitle = $(this).html().replace( &nbsp; ,    );
      $("#sidebar1 .section .headline a:contains( " + activeTitle + " )")
      .parent().addClass("activeTitle");    
});

为了测试,我照抄了所有你的超文本,现在为我工作。 把它当作审判。 我认为最大的问题是,标题可能具有超文本编码性质,因此,如果你遇到更多的问题,就可找到一个图书馆来转换这些名称。

问题回答

暂无回答




相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签