Open
Description
eg:
<script>
function test($targetForm, data) {
$.map(data, function (value, key) {
if (key == "A") {
alert('A')
};
// if (key == "B") {
// }
});
}
</script>
will get the code:
<script>function test($targetForm, data){ $.map(data, function (value, key){ if (key=="A"){ alert('A')}; // if (key=="B"){ //}});} </script>