Mootools - 在事件中添加额外的表单字段
我目前正在开发一个项目,用户可以添加多个新闻标题和新闻文章,他们添加的数量完全取决于用户,因此他们第一次看到的表单只有 1 个标题和 1 篇文章的空间,可以添加另一篇文章/标题有一个“按钮”,上面有一个点击事件,目前我在我的 javascript 中有这个,我必须识别点击并停止链接默认行为,
window.addEvent('domready', function(){
$('add_more').addEvent('click', function(e){
alert('hello');
e.preventDefault();
});
});
我知道 mootools 有一些创建的能力使用 new Element
即时创建新元素,但我不知道创建新表单元素的语法。
I am working a project currently in which the user can add multiple news headlines and news articles, the number they add is entirely up to the user, for this reason the form they first see only has room for 1 headline and 1 article, to add another article/headline there is a 'button' that has a click event on it, currently I have this in my javascript for, I have got to recognise the click and stop the links default behaviour,
window.addEvent('domready', function(){
$('add_more').addEvent('click', function(e){
alert('hello');
e.preventDefault();
});
});
I know that mootools has some abilty to create new elements on the fly, using new Element
but I do not know the syntax for getting it to create a new form element.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同样的事情。
same thing.