country management.htm

来自「一个产品管理系统的UI设计等等东西」· HTM 代码 · 共 34 行

HTM
34
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Country Management</title>
</head>
<script language="javascript" type="text/javascript">
function OpenWindow(page)
{
    window.open(page);
}
function Redirect(page)
{
    window.location = page;
}
</script>
<body bgcolor="#ff9933">
    <table border="1">
        <tr>
            <td colspan="4" align="right">
    		<input id="Button1" type="button" value="Save" style="width: 50px" onclick="Redirect('Country List.htm');" />
    		<input id="Button2" type="button" value="Back" style="width: 50px" onclick="Redirect('Country List.htm');" /><br />
            </td>
        </tr>
        <tr>
            <td colspan="4" style="text-align: center"><strong><span style="font-size: 16pt">Country Management</span></strong></td>
        </tr>
        <tr>
            <td>Country Name</td>
            <td colspan="3"><input id="Text1" type="text" value="England" style="width: 400px" /></td>
        </tr>
    </table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?