我想从div获取任何具有id包装器的数据。 我很震惊,需要你正确的答案。 我如何通过使用jQuery选择器从该div获取数据。
function savehtml(){
var iframe=$("#gjs-cv-canvas").contents().find("iframe").contents().find("#wrapper").html();
alert(iframe);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<html>
<head>
</head>
<body >
<button onclick="savehtml()">save</button>
<div id="gjs">
<div class="gjs-editor">
<div id="gjs-cv-canvas">
<iframe class="gjs-frame">
<html>
<head>
</head>
<body class="gjs-dashed">
<div id="wrapper">
<div>abc</div>
<div>abc</div>
</div>
</body>
</html>
</iframe>
</div>
</div>
</div>
</body>
</html>