HTML如何调用JavaScript函数?
发布网友
发布时间:2022-04-24 15:20
我来回答
共4个回答
热心网友
时间:2022-04-21 15:32
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> new document </title>
<meta name="generator" content="editplus">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<script language="javascript" type="text/javascript">
function getp1(){
alert(document.getElementById("p1").innerHTML);
}
</script>
</head>
<body>
<p id="p1">段落</p>
<input type="button" onclick="getp1()" value="获取P1"/>
</body>
</html>追问这个问题我自己已经解决了,还是谢谢您!
热心网友
时间:2022-04-21 16:50
<p id="p1">段落</p>
<script language="javascript" type="text/javascript">
document.getElementById("p1").innerText = "修改的值";
</script>
热心网友
时间:2022-04-21 18:25
如果在火狐,不能用innerText,要用contentText
若无特殊html语法
可用innerHTML
ex:
document.getElementById("p1").innerHTML="我被修改了"
热心网友
时间:2022-04-21 20:16
<p id="p1">段落</p>
<script>document.getElementById("p1").innerText="1231231"</script>
js代码要写在 后面,不然读不到你的元素的,