以下是关于 EasyUI jQuery textbox widget 的详细攻略:
EasyUI jQuery textbox widget
textbox widget 是 EasyUI jQuery 中的一个小部件,用于输入文本。它可以设置文本框的宽度、高度、提示信息、验证规则等属性,还可以自定义按钮和事件。
语法
$(selector).textbox(options);
参数
- options: 一个包含设置选项的对象。
示例一:基本使用
<!DOCTYPE html>
<html>
<head>
<title>EasyUI jQuery textbox widget 示例</title>
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/icon.css">
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/color.css">
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/demo/demo.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript">
$(function(){
$('#tt').textbox();
});
</script>
</head>
<body>
<input id="tt" class="easyui-textbox" style="width:200px;">
</body>
</html>
这将创建一个 textbox widget,并使用默认设置。在页面加载时,textbox widget 将被创建,并可以输入文本。
示例二:自定义设置
<!DOCTYPE html>
<html>
<head>
<title>EasyUI jQuery textbox widget 示例</title>
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/icon.css">
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/color.css">
<link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/demo/demo.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript">
$(function(){
$('#tt').textbox({
width:300,
height:50,
prompt:'请输入文本',
validType:'email',
onChange:function(newValue,oldValue){
alert('New Value: '+newValue+', Old Value: '+oldValue);
}
});
});
</script>
</head>
<body>
<input id="tt" class="easyui-textbox" style="width:200px;">
</body>
</html>
这将创建一个 textbox widget,并自定义设置。在页面加载时,textbox widget 将被创建,并可以输入文本。它将设置文本框的宽度、高度、提示信息和验证规则。还可以自定义 onChange 事件。
总结:
textbox widget 是 EasyUI jQuery 中的一个小部件,用于输入文本。可以使用 $(selector).textbox(options); 来创建 textbox widget。可以设置文本框的宽度、高度、提示信息、验证规则等属性,还可以自定义按钮和事件。
以上是关于 EasyUI jQuery textbox widget 的完整攻略。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:EasyUI jQuery textbox Widget - Python技术站