- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正试图在我的文本框中使用 jquery 来屏蔽输入,但它没有做任何事情:
$(function() {
$("#<%= received_dateTextbox.ClientID %>").mask("99/99/9999");
...
...
我也试过这样:
$('#received_dateTextbox').mask("99-9999999");
我做错了什么?
我已经包含了这个:
<script type="text/javascript" src="../jquery.maskedinput-1.2.2.js"></script>
这是 html:
<body>
<form id="form1" runat="server">
<div>
<table>
<tr><td>Sample Received Date:</td>
<td><asp:TextBox ID="received_dateTextbox" runat="server"></asp:TextBox></td><td></td><td></td><td></td>..........
这是完整的来源:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LOMForm.aspx.cs" Inherits="EnterData.DataEntry.LOMForm" %>
<!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 runat="server">
<title></title>
<style type="text/css" media=screen>
.TreeNodeOver
{
font-family: Tahoma;
font-size: 8pt;
color: black;
text-decoration: underline;
cursor: pointer;
cursor: hand;
padding-left: 3px;
}
<link rel="stylesheet" type="text/css" href="../jquery-ui-1.8.16.custom.css" />
</style>
<script type="text/javascript" src="../jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="../jquery-ui.js"></script>
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript" src="../jquery.maskedinput-1.2.2.js"></script>
<script type="text/javascript" src="../jquery.min.js"></script>
<script type="text/javascript" src="../jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="../jquery.multiselect.js"></script>
<script type="text/javascript">
$(function() {
$("#<%= received_dateTextbox.ClientID %>").mask("99/99/9999");
$('table input:checkbox').click(function() {
if ($(this).prop('checked')) {
var checkText = $(this).next('a').text();
if (checkText.indexOf('Liquid Handler #:') != -1) {
var userInput = prompt("Liquid Handler #:", "Liquid Handler #:");
$(this).next('a').html('Liquid Handler #:' + '<font color="red">' + userInput + '</font>');
}
if (checkText.indexOf('Olympus #:') != -1) {
var userInput = prompt("Olympus #:", "Olympus #:");
$(this).next('a').html('Olympus #:' + '<font color="red">' + userInput + '</font>');
}
if (checkText.indexOf('LC-MS/MS #:') != -1) {
var userInput = prompt("LC-MS/MS #:", "LC-MS/MS #:");
$(this).next('a').html('LC-MS/MS #:' + '<font color="red">' + userInput + '</font>');
}
if (checkText.indexOf('Liquid Handler#:') != -1) {
var userInput = prompt("Liquid Handler#:", "Liquid Handler#:");
$(this).next('a').html('Liquid Handler#:' + '<font color="red">' + userInput + '</font>');
}
if (checkText.indexOf('Olympus#:') != -1) {
var userInput = prompt("Olympus#:", "Olympus#:");
$(this).next('a').html('Olympus#:' + '<font color="red">' + userInput + '</font>');
}
if (checkText.indexOf('LC-MS/MS#:') != -1) {
var userInput = prompt("LC-MS/MS#:", "LC-MS/MS#:");
$(this).next('a').html('LC-MS/MS#:' + '<font color="red">' + userInput + '</font>');
}
if (checkText.indexOf('Wrong Practice Code') != -1) {
var userInput = prompt("Do you want to check Report Sent to Wrong Location/Physician?", "y/n");
if (userInput.indexOf('y') != -1) {
var elNode = document.getElementById("TreeView1n66CheckBox");
$(elNode).prop("checked", true);
}
}
if (checkText.indexOf('Other:') != -1) {
var userInput = prompt("Other:", "Other:");
$(this).next('a').html('Other:' + '<font color="red">' + userInput + '</font>');
}
}
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr><td>Sample Received Date:</td>
<td><asp:TextBox ID="received_dateTextbox" runat="server"></asp:TextBox></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr>
<tr><td>Site Of Occurrence:</td><td>
<asp:TextBox ID="site_of_occurrenceTextBox" runat="server"></asp:TextBox></td><td>Occurrence Date:</td><td>
<asp:TextBox ID="occurrence_dateTextBox" runat="server"></asp:TextBox></td><td>Report Date:</td>
<td><asp:TextBox ID="report_dateTextBox" runat="server"></asp:TextBox></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr>
<tr><td>Specimen ID:</td><td>
<asp:TextBox ID="spec_idTextBox" runat="server"></asp:TextBox></td><td>Batch ID:</td><td>
<asp:TextBox ID="batch_idTextBox" runat="server"></asp:TextBox></td><td>Report Initiated By:</td>
<td><asp:TextBox ID="report_byTextBox" runat="server"></asp:TextBox></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr>
</table>
<table>
<tr><td>Problem Identified By:</td>
<td>
<asp:CheckBox ID="chkDESpec" runat="server" Text="DE/Spec Res"/></td>
<td>
<asp:CheckBox ID="chkLAB" runat="server" Text="LAB"/>
<asp:CheckBox ID="chkCLS" runat="server" Text="CLS"/>
<asp:CheckBox ID="chkPractice" runat="server" Text="Practice"/>
<asp:CheckBox ID="chkBilling" runat="server" Text="Billing"/>
<asp:CheckBox ID="chkSalesRep" runat="server" Text="Sales Rep"/>
<asp:CheckBox ID="chkOther" runat="server" Text="Other:"/>
<asp:TextBox ID="otherTextBox" runat="server"></asp:TextBox></td><td></td><td></td><td></td><td></td><td></td></tr>
</table>
</div>
<asp:TreeView ID="TreeView1" runat="server" ShowLines="True"
onselectednodechanged="TreeView1_SelectedNodeChanged"
ontreenodecheckchanged="TreeView1_TreeNodeCheckChanged" CssClass="mytreeview"
>
<Nodes>
<asp:TreeNode Text="PreAnalytical" Value="PreAnalytical" Expanded="False">
<asp:TreeNode Text="Labels" Value="Labels" Expanded="False">
<asp:TreeNode Text="Specimen collection device mislabeled/unlabeled by practice"
Value="Specimen collection device mislabeled/unlabeled by practice"
ShowCheckBox="True">
</asp:TreeNode>
<asp:TreeNode Text="Specimen mislabeled: in-house error (Lab or DE)"
Value="Specimen mislabeled: in-house error (Lab or DE)"
ShowCheckBox="True"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Test Requisitions" Value="Test Requisitions"
Expanded="False">
<asp:TreeNode Text="Missing: no form sent with specimen"
Value="Missing: no form sent with specimen" ShowCheckBox="True"></asp:TreeNode>
<asp:TreeNode Text="Wrong (i.e. OT instead of ORAL, sister practice)"
Value="Wrong (i.e. OT instead of ORAL, sister practice)"
ShowCheckBox="True"></asp:TreeNode>
<asp:TreeNode Text="Other: Non-ML" Value="Other: Non-ML" ShowCheckBox="True"></asp:TreeNode>
<asp:TreeNode Text="Copies Received: New ID/Req. assigned"
Value="Copies Received: New ID/Req. assigned" ShowCheckBox="True"></asp:TreeNode>
<asp:TreeNode Text="Incomplete/Blank Requisition Form"
Value="Incomplete/Blank Requisition Form" ShowCheckBox="True"></asp:TreeNode>
<asp:TreeNode Text="2 Specimens: 1 Req" Value="2 Specimens: 1 Req"
ShowCheckBox="True">
</asp:TreeNode>
<asp:TreeNode Text="2 Reqs: 1 Specimen" Value="2 Reqs: 1 Specimen"
ShowCheckBox="True">
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Validity" Value="Need POC Results Confirmed"
Expanded="False">
<asp:TreeNode Text="Need POC Results Confirmed" Value="New Node"></asp:TreeNode>
<asp:TreeNode Text="POC Results Marked Incorrectly" Value="New Node">
</asp:TreeNode>
<asp:TreeNode Text="No Tests Ordered" Value="New Node"></asp:TreeNode>
<asp:TreeNode Text="SEC A Unclear" Value="New Node"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Sales" Value="Sales" Expanded="False">
<asp:TreeNode Text="Practice is not entered in database" Value="New Node">
</asp:TreeNode>
<asp:TreeNode Text="CP has not been updated" Value="New Node"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Other" Value="Other" Expanded="False">
<asp:TreeNode Text="Other" Value="New Node"></asp:TreeNode>
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Analytical" Value="Analytical" Expanded="False">
<asp:TreeNode Text="Reagent Problem" Value="Reagent Problem" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="QC Failure" Value="QC Failure">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="QC Contamination"
Value="QC Contamination"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Absence of INSTD"
Value="Absence of INSTD"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Instrument Problem/Failure"
Value="Instrument Problem/Failure" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Liquid Handler #:"
Value="Liquid Handler #:"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Olympus #:" Value="Olympus #:">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="LC-MS/MS #:" Value="LC-MS/MS #:">
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Processing Problem" Value="Processing Problem"
Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Aliquoting/Sample Processing"
Value="Aliquoting/Sample Processing"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Specimen Contamination/Carryover"
Value="Specimen Contamination/Carryover"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Plate Contamination"
Value="Plate Contamination"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Blank Contamination"
Value="Blank Contamination"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Delay in Production" Value="Delay in Production"
Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Liquid Handler#:"
Value="Liquid Handler#:"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Olympus#:" Value="Olympus#:">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="LC-MS/MS#:" Value="LC-MS/MS#:">
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Operator Error" Value="Operator Error">
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Post-Analytical" Value="Post-Analytical" Expanded="False">
<asp:TreeNode Text="Data Entry" Value="Data Entry" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Medications" Value="Medications">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Tests" Value="Tests"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Collection Date"
Value="Collection Date"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Patient Name" Value="Patient Name">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="DOB" Value="DOB"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="SSN" Value="SSN"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Requesting Physician"
Value="Requesting Physician"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Wrong Practice Code"
Value="Wrong Practice Code"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True"
Text="Corrected Report - patient name & all demos wrong"
Value="Corrected Report - patient name & all demos wrong">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other" Value="Other"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Practice Error" Value="Practice Error" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Medications" Value="Medications">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Tests" Value="Tests"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Demographics" Value="Demographics">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other" Value="Other"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Sales Support/Client" Value="Sales Support/Client"
Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Wrong Report Template"
Value="Wrong Report Template"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Typo Practice Name or Phyisician"
Value="Typo Practice Name or Phyisician"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="E-mail Address" Value="E-mail Address">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Fax Number" Value="Fax Number">
</asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Custom Profile entered incorrectly"
Value="Custom Profile entered incorrectly"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other" Value="Other"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Sales" Value="Sales" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="CP Update Needed"
Value="CP Update Needed"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Client Education Needed"
Value="Client Education Needed"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other" Value="Other"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Operator Error" Value="Operator Error" Expanded="False">
<asp:TreeNode ShowCheckBox="True"
Text="Report Sent to Wrong Location/Physician"
Value="Report Sent to Wrong Location/Physician"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other" Value="Other"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Laboratory" Value="Laboratory" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="Corrected Report - reporting error"
Value="Corrected Report - reporting error"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Physician Requested Repeat"
Value="Physician Requested Repeat"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other" Value="Other"></asp:TreeNode>
</asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="Other" Value="Other" Expanded="False">
<asp:TreeNode ShowCheckBox="True" Text="QuikLab/MLIS Problem"
Value="QuikLab/MLIS Problem"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Practice Complaint"
Value="Practice Complaint"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Shipping (FedEx, UPS)"
Value="Shipping (FedEx, UPS)"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Billing" Value="Billing"></asp:TreeNode>
<asp:TreeNode ShowCheckBox="True" Text="Other:" Value="Other:"></asp:TreeNode>
</asp:TreeNode>
</Nodes>
</asp:TreeView>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Submit" />
</form>
</body>
</html>
最佳答案
没有足够的信息来回答这个问题。我会给出以下建议:
关于javascript - 在文本框上使用 javascript 屏蔽输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7730638/
我需要创建一个 View (作为其他 View 的 mask ) 。圆圈是透明的,外部区域是半透明的。我可以使用 canvas.clipRegion(..) 来实现它,但是 http://develo
踏入爬虫的迷宫 多年以来,我一直是一个对编程充满了好奇心的人。探索着代码的世界,便如同探险家踏入密林深处,寻找未知的宝藏。最近,我将目光聚焦在了爬虫技术上,特别是百度搜索屏蔽问题上。 百度搜索的诱惑
我想将“www.adomain.com”重定向到“www.adomain.com/cms”。 cms 部分应该被屏蔽。 我无法让它安静地工作。因此“cms”始终是网址的一部分。 我尝试了这个解决方案:
我一直在我的 View Controller 中使用以下代码: UIView *view = [[CustomView alloc] init]; UIView *mask = [[CustomMas
如果是网页内容里面的alert,我们可以等网页加载完毕,也就是在webViewDidFinishLoad中执行下面的js代码,就可以屏蔽alert了
我正在使用 PyQt4 QLineEdit小部件接受密码。有一个setMasking属性,但不遵循如何设置屏蔽字符。 最佳答案 editor = QLineEdit() editor.setEchoM
我有一个包含员工信息的 Pandas 数据框,如下所示: df=pd.DataFrame({ 'Id':[1,2,3,4], 'Name':['Joe','Henry','Sam','
我正在为 iPhone 创建一个自定义开/关切换开关(类似于标准开关),并且我正在设置 slider 的蒙版,但调用 [[myView [layer] setMask:maskLayer] 设置
我如何能够在 Objective C 中屏蔽 nsimageview?例如,有一个带圆角的 nsimageview。 最佳答案 你不知道。如果你想以 NSImageView 不支持的方式绘制图像,则需
我正在开发一个可以更改边框或矩形 UIImage 的应用程序。边框会有所不同,但看起来 UIImage 是用剪刀剪掉的,或者有什么影响。 做到这一点的最佳方法是什么? 我的第一个想法是准备一堆具有我正
我需要屏蔽数据,就像在 Azure Pipelines 中一样,但位于 Azure 存储库文件内。有没有一种方法可以设置与脚本分开存储的变量,例如在 Azure 管道中: variable = $(S
我没有找到解决问题的简单方法。我想使用 TextInputDialog,您必须在其中键入用户密码,以重置数据库中的所有数据。 TextInputDialog 的问题是它没有屏蔽文本,我不知道有什么选择
我正在寻找一种自行开发的方法来扰乱生产数据以用于开发和测试。我已经构建了几个脚本来生成随机社会安全号码、轮类出生日期、打乱电子邮件等。但我在尝试打乱客户姓名时遇到了困难。我想保留真实姓名,这样我们仍然
我正在尝试使用过滤器来屏蔽 SSN 的前 5 位数字,它应该看起来像这样 XXX-XX-1234 到目前为止我想出了什么: // {{SocialSecurityNumber | ssn}} angu
我没有找到解决问题的简单方法。我想使用 TextInputDialog,您必须在其中键入用户密码,以重置数据库中的所有数据。 TextInputDialog 的问题是它没有屏蔽文本,我不知道有什么选择
我想屏蔽一个 Fortran 数组。这是我目前正在做的方式...... where (my_array <=15.0) mask_array = 1 elsewhere mask_ar
当用户在用户界面上输入时,我需要屏蔽数字,用户应该看到一个屏蔽的数字,但在 Java 代码上,我应该得到整个数字,包括屏蔽的字符用户应该看到什么 4545********9632但在 Java 代码(
我正在使用 javafx 文本字段。我需要输入数字以及应符合格式 ###.###.###.### 的小数其中小数点根本不可编辑,数字可以是任何数字;不允许其他输入。并非所有数字占位符都需要填写,例如它
我必须交付一个小型 C++ 软件。我想用一些实现(我使用了表达式模板)来掩盖头文件,以使最终用户难以辨认,因此他们无法修改它们。我无法将代码包含在静态或动态库中。有什么方法可以屏蔽头文件的内容吗? 谢
我正在开发一个与 gestureRecognizer 配合使用的应用程序。 使用手势可以选择 UIImage(例如 rectangle.png),并且可以使用 UIPopoverView 通过为所选图
我是一名优秀的程序员,十分优秀!