嗨,编码和脚本的新手,这是我所拥有的:
<html>
<body>
<p align="left"><iframe id="aa" style="HEIGHT: 25px; WIDTH: 227px"src="http://www.html-assets.com/assets/html-building-blocks/php-display-user-ip-address.php" frameborder="0" width="600" name="aa" scrolling="no"></iframe></p>
</br><input type="text" id="ee">
<input type="checkbox" name="dd" value=" onclick="myFunction()"><em>Check the box to copy the IP Address above</em>
<script>
myFunction() {
var x = document.getElementById("aa");
var y =(x.contentWindow || x.contentDocument);
if(dd.oncheck==true){
f.ee.value = y;
}
}
</script>
</body>
</html>
我想要做的是在页面列出最终用户的 IP 地址的地方。我希望用户能够将此地址复制到可以添加到可以提交的表单中的输入字段中。
我将如何编写这个脚本?此时,我的 iframe 中的对象在我的域之外;由于相同的原产地政策,这不可能调用吗?我计划在我们自己的域中使用 .php 创建它;我会相应地调整代码。