英镑的货币符号转换为ajax加载的html代码

时间:2015-07-31 06:21:10

标签: javascript jquery ajax kendo-ui

我已经实现了剑道范围滑块的价格,我正在使用英镑货币。在第一次加载货币时加载其符号。但是在价格变化时,我已经实现了ajax调用,并且在ajax调用货币符号上将英镑转换为其html代码“£”。如果我再次加载页面,它将再次显示符号。 这是我的代码:

  function rangeSliderOnSlide(e) {
                        var rentval = e.values;
                        //update span value when slider change done..
                        $("div#minvalue").text(rentval[0]);
                        $("div#maxvalue").text(rentval[1]);

                        //set the new min and max values below the slider to show current slider points..
                        $("span.currentMinPrice").text('@(Model.SolrPriceRangeFilterContext.CurrencySymbol) ' + rentval[0]);
                        $("span.currentMaxPrice").text('@(Model.SolrPriceRangeFilterContext.CurrencySymbol) ' + rentval[1]);      
                    }

                    function rangeSliderOnChange(e) {
                        var rentval = e.values;
                        var currentURL = $("div#url").text();
                        var url = removeParameter(currentURL, "price");
                        var newUrl = url.replace(/&amp/g, '');
                        url = UpdateQueryString("price", rentval[0] + "-" + rentval[1], newUrl);

                        //update span value when slider change done..
                        localStorage.setItem("selStart", rentval[0]);
                        localStorage.setItem("selEnd", rentval[1]);
                        FiltersPushStateUrl(url); //to update addressbar URL history
                        AjaxCall(url);                            
                    }

//“Model.SolrPriceRangeFilterContext.CurrencySymbol”显示货币符号。 请建议我怎样做才能在ajax电话上显示货币符号?请注意,“$”符号可以正常工作。

感谢。

0 个答案:

没有答案