文本框提交后值赋给innerHTML--------------设计师零张

<title>js第三节</title>

<style type="text/css">

div

{

width:100px;

height:100px;

background:pink;

box-shadow:0px 0px 10px red;

border:2px solid blue;

margin-top:15px;

word-wrap:break-word;

}

</style>

</head>

<script type="text/javascript">

window.onload=function()

{

var atex=document.getElementById("tex");

var abut=document.getElementById("but");

var adiv=document.getElementById("div1");

abut.onclick=function()

{

adiv.innerHTML=atex.value;

}

}

</script>

<body>

<input type="text" value="" id="tex">

<input type="button" value="点击提交" id="but">

<div id="div1">asdasda</div>

</body>

文本框提交后值赋给innerHTML--------------设计师零张,布布扣,bubuko.com

时间: 2024-10-09 23:37:38

文本框提交后值赋给innerHTML--------------设计师零张的相关文章

(转)完美解决 Android WebView 文本框获取焦点后自动放大有关问题

完美解决 Android WebView 文本框获取焦点后自动放大问题 前几天在写一个项目时,要求在项目中嵌入一个WebView 本来很快就完成了,测试也没有问题.但发给新加坡时,他们测试都会出现文本框聚焦时,网页面会放大(他们用三星手机测试的) 网上查了好久参考他的方法加上去测试 http://www.cppblog.com/guojingjia2006/archive/2012/12/18/196429.html 下面我将原文copy过来 **************************

完美解决 Android WebView 文本框获取焦点后自动放大问题

前几天在写一个项目时,要求在项目中嵌入一个WebView 本来很快就完成了,测试也没有问题.但发给新加坡时,他们测试都会出现文本框聚焦时,网页面会放大(他们用三星手机测试的) 网上查了好久参考他的方法加上去测试 http://www.cppblog.com/guojingjia2006/archive/2012/12/18/196429.html 下面我将原文copy过来 **************************************************************

文本框的初始化值属性

文本框的初始化值问题,效果如下; 文本框的placeholder属下来初始化该效果.

js给文本框增加默认值

js给文本框增加默认值 <script type="text/javascript">window.onload = function () {var ss = document.getElementById("txt");ss.onfocus = function () {this.value = "";ss.style.color = "black";}ss.onblur = function () {if (

使用kindeditor获取不到富文本框中的值

获取不到富文本框中的值,网上一搜一堆,但最终没有几个能解决问题的,折腾一番最终解决.注意就是红色代码,加上之后就可以解决问题了. KindEditor.ready(function (K) { var editor1 = K.create('#AContents', { cssPath: '/Content/kindeditor/plugins/code/prettify.css', uploadJson: '/Content/kindeditor/asp.net/upload_json.ash

easyui点击搜索的时候获取不要文本框里面的值的问题

jsp的代码 <div id="tb"> <input id="AppID" placeholder="请根据申请人ID搜索"> <a id="btn" href="javascript:void(0);" class="easyui-linkbutton" onclick="search_ok();" data-options=&quo

判断文本框的取值

1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <title></title> 6 <script src="jq/

点击按钮获得文本框里面的值

<script type="text/javascript"> window.onload = function(){ var obtn=document.getElementById("Button2"); obtn.onclick = function(){ alert(document.getElementsById("Text2").value); }; } </script> <p>用户名:<i

使用layer.open 父页面获取子页面输入文本框中的值

$(function () { $("#confirmpassword").click(function () { var pwd = $("#txtPwd").val(); layer.open({ type: 1 , title: '请输入登入密码' , closeBtn: false , area: '350px;' , shade: 0.8 , id: 'LAY_layuipro' //设定一个id,防止重复弹出 , btn: ['保存','关闭'] , b