日期:2014-05-16  浏览次数:20401 次

js 正则获取标签之间的内容
rt:  不包含标签本身   例: <head>csdn</head>      等于   csdn
------解决方案--------------------
alert('<head>csdn</head>'.match(/<head>([\s\S]*?)<\/head>/)[1])