DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery 結合C#後台的數組對文章的關鍵字自動添加鏈接的代碼
jquery 結合C#後台的數組對文章的關鍵字自動添加鏈接的代碼
編輯:JQuery特效代碼     
當我們需要在後台讀取多個關鍵字時,我們可以先把後台的數據庫讀取到一個數組中(在數據庫添加多個關鍵詞時用“,”隔開):
代碼如下:
public string[] str; //添加一個公共數組一遍jquery調用
protected void Page_Load(object sender, EventArgs e)
{
string str1 = 讀取數據庫的關鍵詞;
str=str1.Split(',');
}
頁面的JQuery:
<html s>
<head >
<script type="text/javascript">
$(document).ready(function(){
<%for(int i=0;i<str.Length;i++){ %>
$("#content").html($("#content").html().replace(/<%=str[i] %>/g, " <a href='http://www.baidu.com' ><%=str[i] %> </a>"));
<%} %>
});
</script>
</head>
<body>
<div id="content">
<%=文章%>
</div>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved