1

編集2:

HTMLにはアーティストと曲のみが表示されており、アルバムは表示されていないことに気づきました。

alert(album);

そこでは予想外の結果が出ていました。jQueryトリムが期待どおりに機能するようになりました。赤面私が他のスクリプトのために保持するあなたの答えをありがとう。

私はJQueryを使用して、lastfmユーザーから再生された最後の10曲を取得して表示しています。

アルバム名をx文字に切り捨てて、...に置き換えたいと思います。

文字列は次のとおりです。

album = item.album['#text'];

ここに表示されます:

$current.find('[class=lfm_album]').append(album);

私は使用してみました:

var shortText = jQuery.trim(album).substring(0, 10)
    .split(" ").slice(0, -1).join(" ") + "...";

ただし、アルバム文字列全体が表示されるだけで、いじったり、JavaScriptを使用したりすることはできません。

編集:

試したばかり

album = item.album['#text'];
alert(album);

そこにあると思われるものを確認すると、スクリプトによって生成された他の文字列のいずれとも一致しない結果が得られるため、実際にスタックしています。

完全なスクリプトは次のとおりです。

/*---------------
 * jQuery Last.Fm Plugin by Engage Interactive
 * Examples and documentation at: http://labs.engageinteractive.co.uk/lastfm/
 * Copyright (c) 2009 Engage Interactive
 * Version: 1.0 (10-JUN-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.3 or later
---------------*/

(function($){
    $.fn.lastFM = function(options) {

        var defaults = {
            number: 5,
            username: 'xxxxxxx',
            apikey: 'xxxxxxxx',
            artSize: 'medium',
            noart: 'images/noartwork.gif',
            onComplete: function(){}
        },
        settings = $.extend({}, defaults, options);

        var lastUrl = 'http://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user='+settings.username+'&api_key='+settings.apikey+'&limit='+settings.number+'&format=json&callback=?';
        var $this = $(this);

        var container = $this.html();

        $this.children(':first').remove();

        if(settings.artSize == 'small'){imgSize = 0}
        if(settings.artSize == 'medium'){imgSize = 1}
        if(settings.artSize == 'large'){imgSize = 2}

        this.each(function() {

            $.getJSON(lastUrl, function(data){ 
                $.each(data.recenttracks.track, function(i, item){

                    if(item.image[1]['#text'] == ''){
                        art = settings.noart;
                    }else{
                        art = stripslashes(item.image[imgSize]['#text']);
                    }

                    url = stripslashes(item.url);
                    song = item.name;
                    artist = item.artist['#text'];
                    album = item.album['#text'];
// this is the part where I try to truncate "album"
var shortText = $.trim(album).substring(0, 10)
    .split(" ").slice(0, -1).join(" ") + "...";




                    $this.append(container);

                    var $current = $this.children(':eq('+i+')');

                    $current.find('[class=lfm_song]').append(song);
                    $current.find('[class=lfm_artist]').append(artist);
                    //$current.find('[class=lfm_album]').append(album);
                    $current.find('[class=lfm_album]').append(shortText);
                    $current.find('[class=lfm_art]').append("<img src='"+art+"' alt='Artwork for "+album+"'/>");
                    $current.find('a').attr('href', url).attr('title', 'Listen to '+song+' on Last.FM').attr('target', '_blank');

                    //callback
                    if(i==(settings.number-1)){
                        settings.onComplete.call(this);
                    }

                });
            });
        });
    };

    //Clean up the URL's
    function stripslashes( str ) {   
        return (str+'').replace(/\0/g, '0').replace(/\\([\\'"])/g, '$1');
    }
})(jQuery);

ご協力いただきありがとうございます。

4

3 に答える 3

3
if (album.length > 10) {
        album = album.substring(0, 10) + "...";
    }
于 2012-06-15T13:03:52.153 に答える
1

アルバム/タイトルを 10 文字目以降のスペースで切り詰めようとしている場合は、次のindexOf方法を使用できます

var album = "   This is the're long title of the album    ";

album = $.trim(album); //make sure to trim the album first
if (album.length > 10) {
  //the indexOf will return the position of the first space starting from the 10th
   alert(album.substring(0, album.indexOf(' ',10)) + "...");
}

ソースMDN

于 2012-06-15T13:31:02.883 に答える
0
album = item.album['#text'];
var x = 10;

if(str.length > x) {
    album = str.substr(0,x) + "...";    
}
于 2012-06-15T13:05:27.003 に答える