...
|
...
|
@@ -55,7 +55,7 @@ $addressForm.on('submit', function() { |
|
|
}
|
|
|
|
|
|
if (security.hasDangerInput(false)) {
|
|
|
return false;
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
// 简单的表单校验
|
...
|
...
|
@@ -164,6 +164,12 @@ $addressListPage.find('.address-last').each(function(i, elem) { |
|
|
});
|
|
|
});
|
|
|
|
|
|
$addressListPage.on('touchstart', 'li', function() {
|
|
|
$(this).addClass('highlight');
|
|
|
}).on('touchend touchcancel', 'li', function() {
|
|
|
$(this).removeClass('highlight');
|
|
|
});
|
|
|
|
|
|
$('input, textarea').on('focus', function() {
|
|
|
$footer.hide();
|
|
|
}).on('blur', function() {
|
...
|
...
|
|