0

有什么可以代替“a”选择器的吗?也许类似<url href="">或类似的东西。我试图避免'a'。原因是我正在使用 jQuery 及其代码修改该部分中的每个“a”。我想保持一些'a'不变。这就是我所拥有的: HTML:

                    <div> <!-- █ POST █ -->
                    <h3>14 June 2012 - Noisettes for Spotify</h3>
                    <p>
                        We have supplied a sound equipment for the Noisettes concert on Spotify company event. Please enjoy <a class="inlink" target="_blank" href="http://www.youtube.com/watch?v=KRFHiBW9RE8">Noisettes on YouTube</a>. 
                    </p>
                </div> 

查询:

$(document).ready(function(){
var $posts = $('#items > div');
var maxHeight = 32;

$('a', $posts).live('click', function(){
    var $par = $(this).prev('p');

    var oH = parseInt($par.attr('class'));

    if($par.height() == oH){
        $par.animate({
            'height': maxHeight
        }, 'medium');
        $(this).text('read more...');
    }else{
        $par.animate({
            'height': oH
        }, 'medium');
        $(this).text('read less...');
    }
});

$posts.each(function(){
    if($('p', this).height() > maxHeight){

        $('p', this)
            .attr('class', $('p', this).height())
            .css('height', maxHeight+'px');
        $(this).append($('<a class="link">').text('read more...'));
    }
});     

});

它用“少读...”替换了我的“YouTube 上的 Noisettes”(来自 html 代码)(仍在工作,但措辞发生了变化。我试图使用 CSS,但它仍然取代了它。我希望我清楚这一点 :)提前感谢您的帮助。

4

2 回答 2

1

您应该使用更具体的选择器:

$posts.find('a.SomeClass')...

然后更改您希望它应用到的链接<a class="SomeClass">

于 2012-07-20T20:23:45.837 回答
0

给出您想要更改特定类的所有“a”,说“可更改”,然后将您的选择器从更改$('a', $posts)$('a.changeable', $posts)

于 2012-07-20T20:23:38.330 回答