我在一个外部脚本中有我的 Javascript,我希望在文本字段中填充文本然后按下回车按钮时发生这种情况。有人可以解释一下如何让它工作,因为当我按下回车按钮时,现在什么都没有发生。提前感谢您的帮助。
另外,如何将文本从文本框中传递给 javascript 函数。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title> All About Resistors </title>
<link rel="stylesheet" type="text/css" href="resistorpagestlying.css" />
<script type="text/javascript"
src="Value_to_Color.js">
</script>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<p>Resistor Value: <input type="text" onClick="print_text" id="test" value="Ohms"></p>
<button>Show Color Code</button>
</body>
</html>
这是 javascript 文件中的文本
function print_text(){
document.writeln("<b>Bold Hello World via an external js file!</b>");
}