87,838
社区成员




<html>
<head>
<script type="text/javascript">
function open_win()
{
var win = window.open("","chatwin","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=400, height=400");
win.document.title = "客服中心";
win.document.write("hello 1");
}
</script>
</head>
<body>
<form>
<input type="button" value="打开窗口" onclick="open_win()">
</form>
</body>
</html>