我遇到了一个项目,我需要开发一个项目作为agenty chrome扩展,它使用点击css选择器。首先,我使用iframe来显示网站,但我遇到了交叉起源和安全问题。现在我正在使用对象标签来显示一个网站,我想点按一下按钮点击css选择器。
这是我的示例代码
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript">
$(function () {
$('#dragit').click(function(){
// make $("#dvSource") to point and click css selector
});
});
</script>
</head>
<body>
<input type="submit" id="dragit" value="DragValues" />
<div id="dvSource">
<object type="text/html" data="http://validator.w3.org/" width="100%" height="600px" id="test">
</object>
</div>
</body>
</html>
我已经放入div
(dvSource)并且我有一个带有id dragit的按钮,一旦我点击该按钮我想点,然后点击dvSource内容的css选择器