如何在我的博客菜单上实现onClick事件,以便当用户单击按钮时,它会在我的博主模板上调用一个javascript函数,该函数可以获得最多的浏览量或最受欢迎的帖子?
如何实现下面的这个片段:
<script type="text/javascript">
function getYpipePP(feed) {
document.write('<ol style="">');
var i;
for (i = 0; i < feed.count ; i++)
{
var href = "'" + feed.value.items[i].link + "'";
var pTitle = feed.value.items[i].title;
var pComment = " (" + feed.value.items[i].commentcount + ")";
var pList = "<li>" + "<a href="+ href + '" target="_blank">' + pTitle;
document.write(pList);
document.write(pComment); //to remove comment count delete this line
document.write('</a></li>');
}
document.write('</ol>');
}
</script>
<script src="http://pipes.yahoo.com/pipes/pipe.run?YourBlogUrl=http://www.MYURL.com&ShowHowMany=10&_id=390e906036f48772b2ed4b5d837af4cd&_callback=getYpipePP&_render=json"
type="text/javascript"></script>
我想在博客上实现这一点,但我的一个博客不支持这种代码。因此,我的想法是在链接上点击一个onClick,然后调用一个包含上面修改过的代码的函数,并将用户重定向到最受欢迎的帖子。
创建一个mostPopulars()
-函数并从LI
调用它。
var pList = "<LI onclick="mostPopulars();">" ...