最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Remove last comma from string using jQuery - Stack Overflow

programmeradmin1浏览0评论

I am using the Supersized jQuery plugin and need to remove the last ma from the list of images so it works in IE. The Supersized plugin does not work in IE if there is a ma after the last image, this is a known issue.

I am using Business Catalyst, so this is not PHP.

This is how the list of images appear, with a trailing ma:

{image : 'melbourne.jpg'},{image : 'tunnel.jpg'},{image : 'building.jpg'},

What would be the best way to do this?

    jQuery(function($){
            $.supersized({
                slide_interval          :   3000,       
                transition              :   1,          
                transition_speed        :   700,        

                slides                  :   [  // Slideshow Images  
                                               {module_webapps,9198,a template="/Layouts/WebApps/slide.tpl"}
                                            ]
            });
        });

And this is what /Layouts/WebApps/slide.tpl looks like. Basically just looping through the slider images...

{image : '{tag_bg image_value}'},

I am using the Supersized jQuery plugin and need to remove the last ma from the list of images so it works in IE. The Supersized plugin does not work in IE if there is a ma after the last image, this is a known issue.

I am using Business Catalyst, so this is not PHP.

This is how the list of images appear, with a trailing ma:

{image : 'melbourne.jpg'},{image : 'tunnel.jpg'},{image : 'building.jpg'},

What would be the best way to do this?

    jQuery(function($){
            $.supersized({
                slide_interval          :   3000,       
                transition              :   1,          
                transition_speed        :   700,        

                slides                  :   [  // Slideshow Images  
                                               {module_webapps,9198,a template="/Layouts/WebApps/slide.tpl"}
                                            ]
            });
        });

And this is what /Layouts/WebApps/slide.tpl looks like. Basically just looping through the slider images...

{image : '{tag_bg image_value}'},
Share Improve this question edited Sep 27, 2013 at 1:04 user537137 asked Sep 27, 2013 at 0:44 user537137user537137 6142 gold badges10 silver badges24 bronze badges 2
  • The question is not clear, what ma? What string? Why doesn't it work in IE? Are you sure that's the issue? – elclanrs Commented Sep 27, 2013 at 0:47
  • This seems to be a PHP question and not jQuery at all. The script that generates the images data is on the server-side not the client-side. You should include the plete PHP code that generates the data. – Boaz Commented Sep 27, 2013 at 0:49
Add a ment  | 

3 Answers 3

Reset to default 5

You can use regulare expression on your string like that :

var modifiedString = yourString.replace(/,\s*$/, '');

This will remove the last ma IF there is one and will also remove white space.

Try substring to remove last ma

var data = "{image : 'melbourne.jpg'},{image : 'tunnel.jpg'},{image : 'building.jpg'},";
    data = data.substr(0, data.length-1);

    console.log( data );

If Business Catalyst doesn't give you the flexibility to do the Django-style {if forloop.last},{endif} tags, consider changing your

]

into

{}]

or

undefined]

so there won't be a trailing ma. Note that your supersized plugin will need to know how to process these "incorrect" values.

发布评论

评论列表(0)

  1. 暂无评论