我正在寻找一个simple javascript警告框。我需要能够将警告框传递给一串文本。
这样的事情可能吗?我的语法可能不对。
<html>
<head>
<script type="text/javascript">
function show_alert()
{
alert(my_string_here);
}
</script>
</head>
<body>
<input type="button" onclick="show_alert()" value="Show alert box" string="alert for system number 2" />
</body>
</html>
答案 0 :(得分:4)
<html>
<head>
<script type="text/javascript">
function show_alert(my_string)
{
alert(my_string);
}
</script>
</head>
<body>
<input type="button" onclick="show_alert('This will alert!')" value="Show alert box" string="alert for system number 2" />
</body>
</html>
这对你没有任何意义。更好的解决方案:
<html>
<head>
</head>
<body>
<input type="button" onclick="alert('Doh!')" value="Show alert box" string="alert for system number 2" />
</body>
</html>
答案 1 :(得分:1)
尝试:
<input type="button" onclick="alert('alert for system number 2');" value="Show alert box" />
答案 2 :(得分:0)
alert("alert for system number 2");
答案 3 :(得分:0)
你想做什么?如果你真的需要提醒,那么提醒('你的字符串在这里')就可以了。
答案 4 :(得分:0)
是的,你可以
function testAlert(val){alert(val);}
答案 5 :(得分:0)
是的,这是可能的
<script type="text/javascript">
function testAlert(val){alert(val);}
</script>
<input type=text onclick='testAlert(this.string)' string="something" value="clik here">