function(catchError) {
try {
var firstname = prompt("please enter your first name");
}
catch (error) {
alert(error.message);
}}
1.我怎样才能消除这个问题
2 也使这项工作在谷歌浏览器
function(catchError) {
try {
var firstname = prompt("please enter your first name");
}
catch (error) {
alert(error.message);
}}
1.我怎样才能消除这个问题
2 也使这项工作在谷歌浏览器