Digitalbush Jquery Mask无法输入数据

时间:2013-01-27 19:48:14

标签: jquery

说我有这个带有来自digitalbush.com的jquery mask插件的html表单。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JQ Mask Test</title>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.maskedinput.js"></script>

<script type="text/javascript">
$(document).ready(function(){
    $("#phone").mask("(999) 999-9999");
});
</script> 
</head>
<body>
<form action="" method="get" name="telephone" id="phoneForm">
<input type="text" name="phone" id="phone" maxlength="14" />
</form>
</body>
</html>

屏蔽显示输入区域中的点击,但是,我无法输入任何内容。有人有解决方案吗?

0 个答案:

没有答案