试图控制 javascript 新窗口想知道表单输入区域何时填满并且想知道如何控制新窗口中的元素。ID,按钮等。这是我的测试示例
提交.html - >
<!DOCTYPE HTML>
<html lang="en-US">
<head>
</head>
<body>
<form>
<input type="input" id="inp">
<input type ="button" id="mybutton" value ="Dell">
</form>
</body>
</html>
javascript->
$('.cde').click(function(){
var n_window = window.open("submit.html");
$(n_window).ready(function(){
$('#inp').focus(function(){
$('#mybutton').val('cns');
})
})
})