在asp.net中使用javascript显示标题属性消息

时间:2016-02-07 18:10:47

标签: javascript html asp.net

我正在制作一份小型注册表格,我有几个输入字段。对于验证程序,我试图添加一个单独的javascript函数,可以帮助我使用onchange概念在一个文本框中验证输入数据,因为我按TAB移动到下一个。目的是,一旦我输入错误的数据并按TAB,标题属性中的消息就会出现。但到目前为止,我没有成功。 javascript函数是客户端。以下是代码段。有人可以帮帮我。

function myFunction(title) {
     var at = title.value;
     alert(at);
}
<input type="text" name="Firstname"  ValidationExpression=[a-zA-Z] title="Firstname not correct" onchange="myFunction(this.title)">
<input type="text" name="telno" ValidationExpression=[0-9]{7} title="Tel num not correct" onchange="myFunction(this.title)">
<input type="text" name="Address" ValidationExpression=[a-zA-Z0-9] title="Address not correct"  onchange="myFunction(this.title)">

提前感谢您的回复。

1 个答案:

答案 0 :(得分:1)

onchange属性已经传递了标题属性myFunction(this.title),这是正确的语法。

function myFunction(title) {
     var at = title;
     alert(at);
}
<input type="text" name="Firstname"  ValidationExpression=[a-zA-Z] title="Firstname not correct" onchange="myFunction(this.title)">
<input type="text" name="telno" ValidationExpression=[0-9]{7} title="Tel num not correct" onchange="myFunction(this.title)">
<input type="text" name="Address" ValidationExpression=[a-zA-Z0-9] title="Address not correct"  onchange="myFunction(this.title)">