我已经有一个文件夹,其中的文件具有以下特定格式的名称,即 MODEL_RELEASEDATE
名为Smartphone的文件夹中的文件名
SmartphoneA_11122012
SmartphoneA_01022013
SmartphoneA_09102013
SmartphoneA_10072012
SmartphoneA_12042012
**SmartphoneB_08282013**
SmartphoneB_04152013
SmartphoneB_08282012
SmartphoneB_01062013
.
.
.
.
and so on
我想编写一个 jquery 代码,我可以使用格式中的特定关键字,从上面的列表中,我将传递值SmartphoneA,我应该能够读取具有最新发布日期的文件。与我传递关键字SmartphoneB时的情况相同。
如果我通过 k/w SmartphoneB,结果应该从上面突出显示的文件中提供,即SmartphoneB_08282013
我当前的代码仅使用特定的 k/w 读取文件名。我几乎没有什么改动要做。
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
var metaKeywords=$('meta[name=keywords]').attr("content");//this utility works based upon the keywords on the pages.
var reqdKeyword = new Array();
reqdKeyword = metaKeywords.split(",");
var randKeyword = reqdKeyword[Math.floor(Math.random() * reqdKeyword.length)];
var cdnUrl = "http://abc.com/xyz/mobiles/";
var jsnUrl = ".json?callback=showDetail";
var finalUrl= cdnUrl.concat(randKeyword.trim()).concat(jsnUrl);
/*
Rest of the code goes here
*/
</script>