gpt4 book ai didi

javascript - 如何在 extjs 的 View 表单中包含 javascript

转载 作者:行者123 更新时间:2023-11-28 02:30:41 24 4
gpt4 key购买 nike

我在 extjs 中工作。我想生成 extjs 形式的验证码。所以我正在使用 javascript 创建验证码,其代码为-

   <!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>BotBoot</title>

<script type="text/javascript">
var a = Math.ceil(Math.random() * 10);
var b = Math.ceil(Math.random() * 10);
var c = a + b
function DrawBotBoot()
{
document.write("What is "+ a + " + " + b +"? ");
document.write("<input id='BotBootInput' type='text' maxlength='2' size='2'/>");
}
function ValidBotBoot(){
var d = document.getElementById('BotBootInput').value;
if (d == c) return true;
return false;

}
</script>

</head>
<body>

Are you human?<br />

<script type="text/javascript">DrawBotBoot()</script>
<input id="Button1" type="button" value="Check" onclick="alert(ValidBotBoot());"/>

</body>
</html>

它工作正常。但现在我想通过提及 xtype 字段将这个 javascript 验证码包含在项目 block 内的注册表单中。那么如何在 extjs View 表单项元素中包含 javascript?

最佳答案

您需要创建一个文本字段和一个按钮以及一个如下所示的自定义类。如果您实现它,您可以将其与 xtype: 'captcha'

一起使用
Ext.define('My.Captcha', {
extend: 'Ext.container.Container',
alias: 'widget.captcha',

initComponent: function(config){
this.a = Math.ceil(Math.random() * 10);
this.b = Math.ceil(Math.random() * 10);
this.c = this.a + this.b;
},

DrawBotBoot: function(){
//custom logic
},

ValidBotBoot: function(){
//custom logic
}
});

如果您要在输入中使用 id,则可以使用 Ext.getCmp() 来检索组件。
祝你好运

关于javascript - 如何在 extjs 的 View 表单中包含 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14229445/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com