一步一个脚印

     一:修改数据库字段属性时:要由低到高改 如:Number(38) 改成number(45,7)但是bigdecimal 最大只能到38.所以处理方式:把数据导出 改完 再导入。
     二:以弹出框口方式打开页面<a href ="javascript:showModalDialog('js.html');">sohu</a>。
    js.html:
<html>
<head>
<base target="_self">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<a href="http://www.baidu.com" target="_self">baidu</a>
</body>
</html>

其中<base target="_self">表示 在当前页面转页面。

你可能感兴趣的:(一步一个脚印)