Authored by whb

在线登记

... ... @@ -764,6 +764,21 @@ define('yohood', function(require, exports) {
//在线登记
exports.onlinereg = function() {
$(".content-header a").bind("click", function(e)
{
var href = $(this).attr("href");
$(this).attr("href","javascript:void(0)");
if(window.confirm("切换后已填信息将被清空,是否切换?"))
{
window.location.href = href;
}
else
{
$(this).attr("href", href);
return false;
}
});
$(".apply-operate span").bind("click", function()
{
window.location.href = $(this).attr("href");
... ...