This commit is contained in:
holan20180123
2021-07-13 13:51:21 +08:00
parent 1926cb7ad9
commit 2e8884d86c
7 changed files with 32 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
$(function()
{
$('[name=mode]').change(function()
{
var mode = $(this).val();
if(mode == 'classic') $('#modeTips').html(newTips);
if(mode == 'new') $('#modeTips').html(classicTips);
})
})