如何让易语言中网页编辑框上的内容显示到编辑框上! 100
展开全部
获取网页的host内容、编辑框句柄,同步到易语言的编辑框就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用 js 获取文本框的 value 值,再赋值给另一个文本框。
<html>
<head>
<title>this is test</title>
<script>
function getValue() {
document.getElementById( "two").value = document.getElementById( "first").value;
}
</script>
</head>
<body>
<input type= "text " id= "first" onkeyup= "getValue()" />
</br>
<input type= "text " id= "two" />
</body>
</html>
<html>
<head>
<title>this is test</title>
<script>
function getValue() {
document.getElementById( "two").value = document.getElementById( "first").value;
}
</script>
</head>
<body>
<input type= "text " id= "first" onkeyup= "getValue()" />
</br>
<input type= "text " id= "two" />
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询