mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-04 13:02:53 +08:00
14 lines
305 B
JavaScript
Executable File
14 lines
305 B
JavaScript
Executable File
$(function()
|
|
{
|
|
// 阻止事件冒泡
|
|
$(document).on('click', '.address-submit-delete', function(e)
|
|
{
|
|
ConfirmDataDelete($(this));
|
|
});
|
|
|
|
// 设为默认地址
|
|
$(document).on('click', '.address-default-submit', function(e)
|
|
{
|
|
ConfirmNetworkAjax($(this));
|
|
});
|
|
}); |