UNPKG

zoomla

Version:

16年专业研发|中文alexa排名第一的CMS品牌-基于dotNET core、功能强大,集成站群、微信开发、小程序与ERP及OA办公系统,支持国际语言和多民族语言,世界五百强与大型门户专用高端网站内核CMS系统

33 lines (32 loc) 863 B
<!DOCTYPE html> <html> <head> <title>表格删除提示</title> <script type="text/javascript" src="../internal.js"></script> <style type="text/css"> .section { width: 200px; margin: 10px auto 0; font-size: 14px; } .item { text-align: center; } </style> </head> <body> <div class="section"> <div class="item"> <label><input type="radio" id="J_delRow" name="cmd" checked/><var id="lang_delRow"></var></label> </div> <div class="item"> <label><input type="radio" id="J_delCol" name="cmd"/><var id="lang_delCol"></var></label> </div> </div> <script type="text/javascript"> dialog.onok = function () { $G("J_delRow").checked ? editor.execCommand("deleterow") : editor.execCommand("deletecol"); }; </script> </body> </html>