我有斜线问题!我有一些jQuery用于处理页面上的通用对话框。在某些情况下,字段是通过/分隔路径......
var fieldValues = [];
// pull values from all the fields belonging to the dialog...
$.each($(this).find('input, textarea, select'), function(n,field) {
// escape the path fields
var value = escape($(field).val().replace(/\//g,'__slash__'));
//alert ($(field).attr('id')+'='+value);
if(id != '' && value != '') {
fieldValues.push(id+'='+value);
}
});
这段代码有效,但是当我到达php结束时,我手动剥离__slash__。是否有一些编码功能我错过了让我放弃看起来笨拙的替换?