日期:2014-05-16 浏览次数:20322 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { var keys = [{ key: '数据库', url: 'http://abc.com/db' }, { key: '语言', url: 'http://def.cn/lang'}]; var replace = function (content, keys) { for (var i = 0; i < keys.length; i++) { content = content.replace(keys[i].key, '<a href="' + keys[i].url + '">' + keys[i].key + '</a>'); } return content; }; $('#trans').html(replace($('#trans').text(), keys)); }); </script> </head> <body> <div id="trans"> 你要具体给个数据库定义哪个词需要连接,连接到哪里,这就涉及到数据库的读取了,建议在后台语言的方向考虑吧,打开页面的时候动态加词加上超连不难。</div> </body> </html>