公猫不绝育能活几年能做绝育手术吗?


来自: 神经哇哇(女汉子也会小温柔)
2015-03-26 18:07:31
', prompt:'', callback: action});
return false;
})
// 介绍折叠
$('.fold-dialog-intro').click(function() {
generate_group_prompt_dialog({
content: [
'',
'什么是折叠?',
'折叠是提供给小组组长/管理员的内容管理工具,对于存在争议、低质/水化的内容,组长/管理员可将其折叠,有效维护小组高质、友善的讨论氛围。折叠后的内容,如组长/管理员判断已不再需要折叠,可将其恢复。',
'一个讨论被折叠后会发生什么?',
'该内容不会被删除,只是不再展示在小组讨论列表中,且无法被顶起。折叠操作不会通知内容发布者。',
'请注意,如组长/管理员滥用该功能,无故限制组员的正常发言,一经发现,小组将被禁用折叠功能。',
'',
''
].join(''),
buttons: ['confirm'],
callback: function () { dui.Dialog().close() }
})
})
// 查看成员记录
var active_members = [];
$('.memberstats-dialog-confirm').click(function() {
var el = $(this)
var action_text = $(this).attr('title')
var uid = el.data('uid')
var uname = el.data('uname')
var gid = el.data('gid')
dui.Dialog({
width: 'auto',
cls: 'dlg-stats',
content: '加载中...',
buttons: ['confirm']
}).open()
$.get('/j/group/' + gid +'/member_stats', {
user_id: uid,
need_topic_count: 1,
full: 1
}, function(resp) {
var title = uname
if (active_members.indexOf(String(uid)) > -1) {
title += ''
}
var active_text = [
'发布讨论 ' + resp.topic_count + '',
'发布回复 ' + resp.comments_count + '',
resp.elite_count ? '精华讨论 ' + resp.elite_count + '' : ''
].map(function(t) { return ''+t+''}).join('')
var unruled_text = [
resp.deleted_count > 0 ? '讨论被删除 ' + resp.deleted_count + '' : null,
resp.locked_count > 0 ? '讨论被禁回 ' + resp.locked_count + '' : null
].filter(Boolean).map(function(t) { return '' + t + ''}).join('')
var rmvCount = resp.banned_record.reduce(function(acc, r) { return acc + r.count }, 0)
var community_text = [
'近半年被 ' + rmvCount + '个小组 移出并永久拒绝加入',
].concat(resp.banned_reason_list.map(function(r) { return ''+ r[0] + ' '+ r[1] +'' +''})).filter(Boolean).join('')
if (rmvCount === 0) {
community_text = null
}
dui.Dialog({
title: title,
content: [
'',
'',
'',
'成员记录说明'
].join(''),
buttons: ['confirm'],
}).update()
})
});
// 移除广告内容要提示
$('.ban-dialog-ad').click(function(){
var prompt_dlg = dui.Dialog({
cls: 'group-promote-dialog',
title: '操作提示',
content: '该帐号为豆瓣商务官方广告投放账号,不支持封禁操作,如有问题请联系小组组长或 business@douban.com',
width: 400,
buttons: [
{text: '确定', method: function(){} },
]
});
var dui_dialog_ft_html = function(){
$('.dui-dialog').undelegate('.btn-ok', 'click').delegate('.btn-ok', 'click', function(){
$(".dui-dialog").hide();
});
return '确定';
};
prompt_dlg.open();
prompt_dlg.node.find('.ft').html(dui_dialog_ft_html());
return false
});
$('.remove-dialog-ad').click(function(){
var prompt_dlg = dui.Dialog({
cls: 'group-promote-dialog',
title: '操作提示',
content: '真的要删除小组讨论 公猫养了2年多了,还可以绝育吗?(咬到手都肿了)?',
width:
400,
buttons: [
{text: '确定', method: function(){} },
]
});
var dui_dialog_ft_html = function(){
$('.dui-dialog').undelegate('.btn-ok', 'click').delegate('.btn-ok', 'click', function(){
var remove_topic_url = $('.remove-dialog-ad').attr('href');
window.location = remove_topic_url;
});
$('.dui-dialog').delegate('.btn-cancel', 'click', function(){
$(".dui-dialog").hide();
});
return '取消确定'
};
prompt_dlg.open();
prompt_dlg.node.find('.ft').html(dui_dialog_ft_html());
return false
});
// 提前结束快闪楼
$('.unset-flash-event').click(function(e){
e.preventDefault();
var confirm_dlg = dui.Dialog({
cls: 'unset-flash-event-dialog',
title: '确定提前结束快闪楼吗',
content: '结束后,无法再恢复',
width: 400,
buttons: [
{
text: '确定', method: function(){
$.get("https://www.douban.com/group/topic/73574125/unset_topic_event", function(data) {
location.reload();
})
}
},
{
text: '取消',
method: function() {
confirm_dlg.close()
}
}
]
})
confirm_dlg.open()
})
// 设置为快闪楼
$('.set-flash-event').click(function(e){
e.preventDefault()
var date = $(this).attr('data-date');
var topic_id = $(this).attr('data-topic_id');
var prompt_dlg = dui.Dialog({
cls: 'set-flash-event-dialog group-promote-dialog',
title: '设置为快闪楼',
content: [
'快闪楼活动开始时间是讨论帖子的发布时间:' + date + '',
'',
'活动持续时间',
'3天',
'7天',
'10天',
'14天',
].concat([], [''])
.join(''),
width:
400,
buttons: [
{text: '确定', method: function(){} },
]
});
var dui_dialog_ft_html = function() {
var days = $('.dui-dialog input[name="event_days"]:checked').val()
var event_type = $('.dui-dialog input[name="event_type"]:checked').val()
$('.dui-dialog').delegate('.btn-cancel', 'click', function(){
$(".dui-dialog").hide();
});
return '确定取消';
};
$('.dui-dialog').delegate('input[name="event_days"], input[name="event_type"]', 'change', function(e) {
var days = $('.dui-dialog input[name="event_days"]:checked').val();
var event_type = $('.dui-dialog input[name="event_type"]:checked').val();
$('.dui-dialog .dui-dialog-content .ft .btn-ok').attr('href', '/group/topic/' + topic_id + '/set_topic_event?event_days={0}&event_type={1}'.format(days, event_type))
})
prompt_dlg.open();
prompt_dlg.node.find('.ft').html(dui_dialog_ft_html());
});
});
}

原创
2022-11-18 18:38:41
浏览:1.6万
能绝育一般建议配完种,等发情期过去以后可以绝育。做绝育手术前24h,猫咪需要禁食禁水。并且术后应佩戴伊丽莎白圈,防止猫咪舔舐伤口,引起感染。如果猫咪做完手术后,手术部位有消炎,建议主人在医院打一针消炎药,可连续三天。饮食稍清淡就可以。
猜你想问
公猫体温高正常么
猫的正常体温在38摄氏度到39摄氏度之间。正常情况下,猫的体温在39摄氏度左右。如果在测量体温时,猫咪剧烈的挣扎或反抗测体温,是有可能瞬间达到四十摄氏度的,这是正常...
公猫绝育多久才不乱叫
公猫绝育做了之后一周就开始懂事了,很温顺,还很听话。公猫一般建议可以在半岁至一岁左右时进行绝育。绝育可以避免很多生殖系统的疾病,例如睾丸肿瘤、前列腺肿大等疾...
公猫被阉过的为什么还会闹猫
要看看公猫是啥时候做的绝育。半年内的话,是有可能的。这个时候雄性激素是逐渐降低的,同时也会保留以前的性行为,也会还有发情的迹象,这都算是正常的情况。请随意闹腾...
公猫绝育后还骑胳膊怎么办
如果绝育后的公猫还有骑跨行为的话我们是不需要制止的。它们会发生骑跨行为有三个类型。1公猫虽然做了绝育手术但是身体里面的雌激素水平还是很高公猫在绝育手术...
公猫绝育要穿绝育服么
公猫绝育的话,到宠物医院医院直接做绝育手术了,公猫做手术的创面非常小不需要穿绝育服,绝育服主要是对于创口比较大的母猫来穿怕伤口感染。其实买个伊丽莎白圈就OK了...
XML地图
网站地图
Copyright 2005-2020 www.kxting.com
版权所有
湘ICP备20010517号声明: 本站所有内容均只可用于学习参考,信息与图片素材来源于互联网,如内容侵权与违规,请与本站联系,将在三个工作日内处理,联系邮箱:47085,1089@qq.com
}
公猫绝育手术又称去势手术,是把两个睾丸摘除,而非是输精管结扎。一般采取自体打结法,睾丸的切口也不需要缝合,也不用担心猫咪舔伤口。一般伤口大约14天就可以恢复,所以14天内不能给猫咪洗澡,注意清洁卫生,口服一周抗生素就可以。在术前医生都会检查猫咪有无隐睾情况,因为隐睾的手术难度和费用都是相比要高的。很多铲屎官不知道什么是隐睾,隐睾就是睾丸未能下降到阴囊里,包括睾丸下降不全和睾丸异位,也就是蛋蛋没在蛋皮里,而是留在腹部或腹股沟管。如果你认为隐睾不需要绝育那就错了,因为大部分隐睾最终会转化成恶性肿瘤,所以术前的各项检查还是很有必要的。下期分享母猫绝育#芒果家的猫 #公猫绝育 #猫咪绝育三只布偶找家长完美开脸可甜可咸发布于 2022-06-28 15:06}

我要回帖

更多关于 公猫不绝育能活几年 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信