php 为 文本框赋值问题 代码不完善 实现单击按钮之后让文本框显示 $in的值.
<html><head><scriptlanguage="php">functionaaa(){$bo=true;$in=12;}</script></head><bod...
<html>
<head>
<script language="php">
function aaa(){
$bo=true;
$in=12;
}
</script>
</head>
<body>
<input type="button" onclick="aaa()"/>
<input width="200" height="20" />
</body>
</html> 展开
<head>
<script language="php">
function aaa(){
$bo=true;
$in=12;
}
</script>
</head>
<body>
<input type="button" onclick="aaa()"/>
<input width="200" height="20" />
</body>
</html> 展开
展开全部
话说如果你用Jquery的话
就是去网上下个jquery的包然后吧js文件的地址引到head里去
<script>
$("#btn").click(function(){
$("#input").replaceWith("重写input的内容");
});
</script>
<body>
<input type="textarea" id = "input"></input>
</body>
如果你不想用jquery那就看看js是如何用document选择元素(就是input)然后改变它的内容的吧...
就是去网上下个jquery的包然后吧js文件的地址引到head里去
<script>
$("#btn").click(function(){
$("#input").replaceWith("重写input的内容");
});
</script>
<body>
<input type="textarea" id = "input"></input>
</body>
如果你不想用jquery那就看看js是如何用document选择元素(就是input)然后改变它的内容的吧...
追问
恩 挺好 谢谢
展开全部
<script language="php">
function aaa(){
$bo=true;
$in=12;
echo $in;//打印$in的值 }
</script>
</head>
<body>
<input type="button" onclick="alert(this.value);" value="<?php aaa();?>"/>
<input width="200" height="20" />
function aaa(){
$bo=true;
$in=12;
echo $in;//打印$in的值 }
</script>
</head>
<body>
<input type="button" onclick="alert(this.value);" value="<?php aaa();?>"/>
<input width="200" height="20" />
追问
谢谢你这个方法;但是能不能告诉我怎样像js中 的document.getElementById获取id一样 php中怎么写啊...???
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<script>
function aaa(){
$bo=true;
$in=12;
var text1 = document.getElementById("text1");
text1.value = $in;
}
</script>
</head>
<body>
<input type="button" onclick="aaa()"/>
<input type="text" width="200" height="20" id="text1" />
</body>
</html>
注:
script 的 language 属性没有 "php" 这一项
input 要加 type="text" 并设置一个ID
<head>
<script>
function aaa(){
$bo=true;
$in=12;
var text1 = document.getElementById("text1");
text1.value = $in;
}
</script>
</head>
<body>
<input type="button" onclick="aaa()"/>
<input type="text" width="200" height="20" id="text1" />
</body>
</html>
注:
script 的 language 属性没有 "php" 这一项
input 要加 type="text" 并设置一个ID
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询