济南劳务派遣_济南劳务派遣公司_山东劳务派遣_和诺公司
这是一个提供济南地区劳务派遣服务的网站,主要业务包括济南劳务派遣、济南劳务派遣公司、山东劳务派遣等。和诺公司作为该领域的专业服务商,致力于为客户提供优质的人力资源解决方案。
if (typeof jQuery === 'undefined') {
// Alert users without jQuery instanced
throw new Error('jQuery XSSCleaner is a jQuery Plugin, so it needs jQuery to work ;) ');
}
(function( $ ) {
$.fn.xssclean = function(string){
function htmlentities(text){
var ret = '';
for(var i=0;i <= text.length;i++){
var strclean = text.substr(i,1).replace(/"/,'"').
replace(/>/,'>').
replace(/</,'<').
replace(/©/,'©').
replace(/÷/,'÷').
replace(/μ/,'μ').
replace(/·/,'·').
replace(/¶/,'¶')
return ret;
};
return ret;
};