code3.js:8 Uncaught TypeError: Cannot read property 'charAt' of undefined at espaces_debut (code3.js:8) at onload (Ex4.htm:11)キャッチされない例外TypeError:未定義
の 'のcharAt' プロパティを読み取ることができません: code3.js、IN
<html>
<head>
<title>Ex4</title>
<script language="javascript" src="code3.js">
ch=prompt ("ch ") ;
alert (espaces_debut(ch));
</script>
</head>
<body onload="espaces_debut()">
</body>
</html>
:
function espaces_debut(ch)
{
i=-1;
do
{
i=i+1
}
while (ch.charAt(i)=' ') ;
return (ch.substr(0,i-1)) ;
}
私はこのエラーを取得し、ヘルプpls
注:[SRC属性を使用したインラインスクリプト?](https://stackoverflow.com/questions/1056325/javascript-inline-script-with-src-attribute) –