You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
852 B
25 lines
852 B
|
2 years ago
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>ceshi</title>
|
||
|
|
</head>
|
||
|
|
<script type="text/javascript">
|
||
|
|
function openWin(){
|
||
|
|
window.policeGroupWin = window.open('policeGroup.html', '', 'height=800, width=1200, top=50, left=150, toolbar=no, menubar=no, scrollbars=no, resizable=yes,location=no, status=no');
|
||
|
|
}
|
||
|
|
function addMember(){
|
||
|
|
var policeid = document.getElementById("policeidIpt").value;
|
||
|
|
var policename = document.getElementById("policenameIpt").value;
|
||
|
|
window.policeGroupWin.addMember(policeid,policename);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<body>
|
||
|
|
<input type="text" id="policeidIpt" value="017003" />
|
||
|
|
<input type="text" id="policenameIpt" value="徐冬" />
|
||
|
|
<button type="button" onclick="addMember()">添加成员</button><br/>
|
||
|
|
<button type="button" onclick="openWin()">打开对讲组页面</button>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|