* Modify the mutual test problem.

This commit is contained in:
xieqiyu
2022-01-04 10:08:14 +08:00
parent 6473699b6e
commit 77ba543cc8
5 changed files with 15 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
$(function()
{
$('#modeTab').addClass('btn-active-text');
$('[name=mode]').change(function()
{
$(this).val() == 'new' ? $('#changeModeTips').removeClass('hidden') : $('#changeModeTips').addClass('hidden');
});
})