使用Visual Studio 2012創建網頁並使用「ASP.NET網站(Razor v2)」創建Im使用Java生成隨機鏈接;從列表中選擇一個隨機url並顯示爲URL
<script>
var random = new Array();
random[0] = "example1.com";
random[1] = "pattern1.com";
random[2] = "specimen1.com";
</script>
<script>
function randomlink() {
window.location = random[Math.floor(Math.random() * random.length)];
}
</script>
<a href="javascript:randomlink()" style="color: black;">A Random URL</a>
當我點擊一個隨機URL鏈接時,它會從上面的腳本的列表中打開一個隨機頁面。我認爲一切都很好,但是因爲它是一個很大的列表,我需要一種方法來做同樣的事情,而不用HTML,因爲它在_SiteLayout.cshtml中減慢了頁面的加載速度。謝謝。
請您詳細解釋一下嗎?我對這個東西有點新鮮。 –
你可能會發現這篇文章很有幫助http://www.codeproject.com/Articles/575397/An-Absolute-Beginners-Tutorial-on-ASP-NET-MVC-for – TGH