js 获取TEXT的值。请大仙们帮帮忙!!

JavaScript025

js 获取TEXT的值。请大仙们帮帮忙!!,第1张

山山,这种问题你直接找我就好了,小case:

文本框:<input

type="text"

id="text_1">

按钮:<input

type="button"

value="ok"

onclick="getvalue(this)"

id="button_1">

function

getValue(ctl){

function

getvalue(ctl)

{

var

returnVal

=

document.getElementById("text_"

+

ctl.id.substr(ctl.id.lastIndexOf('_')

+

1,

ctl.id.length

-

1)).value

alert(returnVal)

}

}

获取方式:

<head>

<script>

function load(){

var aa = document.getElementById("textfiled").value//获取text的值aaa

alert(aa)

}

</script>

</head>

<body onload="load()">

<form id="form2" runat ="server">

<input type ="text" id="textfiled" name="textfiled" value ="aaa" style="display:none" />

</form>

</body>

document.getElementById("") 通过id获得改对象

Q:如何访问剪贴板

A:

(1)拖拽访问

event.dataTransfer.setData("URL", oImage.src)

sImageURL = event.dataTransfer.getData("URL")

(2)普通访问

window.clipboardData.setData("Text",oSource.innerText)

window.clipboardData.getData("Text")

Q:如何使Window.Print()不打印页码和文件名

A:这个方法需要使用脚本来修改注册表,使用的过程中会跳出警告。是一个很头疼的问题,不过目前没有找到更好的解决办法。