私はあなたの助けが必要です。これはばかげた質問ですが、解決できません...申し訳ありません:(
私が持っている1つのjavascriptファイルwelcome.jsがあります
function alert()
{
return 10;
}
私はwelcome.jsファイルを呼び出している別のhtmlファイルwelcome.htmlを持っています
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript src="welcome.js"></script>
<script>
function myFunction()
{
var x = alert();
return x;
}
</script>
</head>
<body>
<input type="button" onclick="myFunction();" value="Show alert box">
Mozilla コンソールでこのエラーが発生し続けます
タイムスタンプ: 2013 年 5 月 28 日 9:56:47 PM エラー: NS_ERROR_XPC_NOT_ENOUGH_ARGS: 十分な引数がありません [nsIDOMWindow.alert]