function setClickData(operation_type,extra_id,jump_url){
console.log(operation_type);
console.log(extra_id);
console.log(jump_url);
$('input[name="operation_type"]').val(operation_type);
$('input[name="extra_id"]').val(extra_id);
$('input[name="jump_url"]').val(jump_url);
var requestData = {};
requestData.operation_type = operation_type;
requestData.extra_id = extra_id;
requestData.jump_url = jump_url;
window.location.href = "next://"+JSON.stringify(requestData);
}
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
NSString *requestString = [[[request URL] absoluteString]stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
DLog(@"%@",requestString);
return YES;
}