テキストフィールドにテキストが入力されてから入力ボタンが押されたときに発生させたい外部スクリプトにJavascriptがあります。Enterボタンを押しても何も起こらないので、誰かがこれを機能させる方法を説明してください。事前にご協力いただきありがとうございます。
また、テキスト ボックスから 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>");
}