- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我构建了一个表单,用户可以在其中设置 iframe 的宽度和高度,然后使用这些值构建要嵌入网页上的字符串。
这个想法是,一旦用户填写了输入,字符串就会自动使用新插入的值进行更新。
但似乎字符串更新不及时:它似乎丢失了最后一个“按键”。
这是我写的代码
$( document ).ready(function() {
$('iframe#WidgetContent').width(300);
// Get the value of the input width box
$( 'form #WidgetConfigurator_width' ).keyup(function() {
var width=parseInt( $(this).val());
if ( width < 180 ) {
width = 180;
}
if ( width > 500 ) {
width = 500;
}
$('iframe#WidgetContent').width(width);
getEmbeddableCode();
});
});
$( document ).ready(function() {
$('iframe#WidgetContent').height(500);
// Get the value of the input width box
$( 'form #WidgetConfigurator_height' ).keypress(function() {
var height=parseInt( $(this).val());
if ( height < 70 ) {
height = 70;
}
$('iframe#WidgetContent').height(height);
getEmbeddableCode();
});
});
$( document ).ready(function() {
window.getEmbeddableCode = function() {
var iframe = $('iframe#WidgetContent');
var height = iframe.height();
var width = iframe.width();
var host = $(location).attr('protocol') + '//' + $(location).attr('hostname');
var code = '<iframe id="WidgetContent" src="http://127.0.0.1:8000/widget/1/" frameborder="0" height="' + height + '" width="' + width + '"></iframe>';
$('#getEmbeddableCode').html(code);
};
});
$( document ).ready(function() {
if ( '' === $( '#getEmbeddableCode' ).val() ) {
getEmbeddableCode();
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form name="WidgetConfigurator" method="post" id="WidgetConfigurator">
<div class="form-group">
<label for="WidgetConfigurator_width">Width widget</label>
<input type="text" id="WidgetConfigurator_width" name="WidgetConfigurator[width]" class="form-control" placeholder="Da un minimo 180 a un massimo di 500">
</div>
<div class="form-group">
<label for="WidgetConfigurator_height">Height widget</label>
<input type="text" id="WidgetConfigurator_height" name="WidgetConfigurator[height]" class="form-control" placeholder="Minimo 70">
</div>
<div class="form-group">
<label for="getEmbeddableCode">Clicca e il codice si copierà automaticamente</label>
<textarea id="getEmbeddableCode" class="form-control" rows="5"></textarea>
</div>
</form>
<iframe id="WidgetContent" src="http://127.0.0.1:8000/widget/1" frameborder="0"></iframe>
无论如何,问题是,如果我在 Width input
中写入 200,则文本区域中的值永远不会是 200,而是其他值(有时是 192,其他时候是 180,其他时候另一个值:它似乎是一个随机数)。一旦我开始在高度输入
中写入值,正确的值将从宽度值中获取,但高度值同时发生同样的事情:它永远不是我写的值在输入
中。
我认为有些东西我没有考虑计时,但是,由于这是我用 Jquery 编写的第一个脚本,我确信我遗漏了一些东西。
有什么建议吗?谢谢!
PS由于这是我第一个非常实用的 Jquery 方法,因此我还希望收到有关重构我认为现在有点困惑的代码的反馈。如果有人可以帮助我理解如何更好地构建代码,那将非常有帮助!
最佳答案
好吧,说真的,各位。我成功了;)
var width = 300;
var height = 70;
$('iframe#WidgetContent').width(width);
$('iframe#WidgetContent').height(height);
// Get the value of the input width box
$('form #WidgetConfigurator_width').change(function() {
width = parseInt($(this).val());
if (width < 180) {
width = 180;
}
if (width > 500) {
width = 500;
}
$('iframe#WidgetContent').width(width);
getEmbeddableCode();
});
// Get the value of the input width box
$('form #WidgetConfigurator_height').change(function() {
height = parseInt($(this).val());
if (height < 70) {
height = 70;
}
$('iframe#WidgetContent').height(height);
getEmbeddableCode();
});
window.getEmbeddableCode = function() {
var iframe = $('iframe#WidgetContent');
var host = $(location).attr('protocol') + '//' + $(location).attr('hostname');
var code = '<iframe id="WidgetContent" src="http://127.0.0.1:8000/widget/1/" frameborder="0" height="' + height + '" width="' + width + '"></iframe>';
$('#getEmbeddableCode').html(code);
};
if ('' === $('#getEmbeddableCode').val()) {
getEmbeddableCode();
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form name="WidgetConfigurator" method="post" id="WidgetConfigurator">
<div class="form-group">
<label for="WidgetConfigurator_width">Width widget</label>
<input type="text" id="WidgetConfigurator_width" name="WidgetConfigurator[width]" class="form-control" placeholder="Da un minimo 180 a un massimo di 500">
</div>
<div class="form-group">
<label for="WidgetConfigurator_height">Height widget</label>
<input type="text" id="WidgetConfigurator_height" name="WidgetConfigurator[height]" class="form-control" placeholder="Minimo 70">
</div>
<div class="form-group">
<label for="getEmbeddableCode">Clicca e il codice si copierà automaticamente</label>
<textarea id="getEmbeddableCode" class="form-control" rows="5"></textarea>
</div>
</form>
<iframe id="WidgetContent" src="http://127.0.0.1:8000/widget/1" frameborder="0"></iframe>
关于javascript - Jquery .keyup、.keypress 和 .keydown : problems with timing (and advices on refactoring the code),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33879970/
这是我的代码: $( '#Example' ).on( "keypress", function( keyEvent ) { if ( keyEvent.which != 44 ) {
自从我切换到 MAC 以来,我一直讨厌这样一个事实,即我必须使用 cmd+tab 的 alt 键来隐藏窗口。 我知道有一些应用程序(如 witch )可以替代 cmd+tab 功能,但我喜欢当前的界面
我希望在文本框上按键时运行一个函数,因此我有以下代码: $("input[x]").keypress(function() { DoX(); }) 这工作正常,但在我的函数中我
我有一个场景,我想通过进行 Http REST 调用来获取匹配的字符串,将每次击键时输入框中出现的字符串发送到服务器。但它没有按我的预期工作,例如,假设输入框中的当前值为“modul”,如果我在“mo
我刚刚开始使用 p5.js,我喜欢它的简单性,但有一点我无法掌握。 我设置了以下Fiddle : function Player(location, width, height, speed, wei
这里有两个类: public class Cls implements Runnable, KeyListener Thread t; Object obj; public Cls(Thing obj
我将一些程序从学校的计算机(Mac)传输到我的家用电脑。进入我的计算机后,我注意到按键现在在每个程序中都不起作用。我花了几个小时试图找出 KeyPressed 不起作用的原因。两台电脑都使用Eclip
我正在用java为自己制作一个俄罗斯方 block 克隆,作为一个学习项目。然而,我现在陷入了获取左右移动棋子的输入部分。我不确定问题是否出在我的方法中,或者问题出在未调用的 keyPressed 方
基本上我必须为一个项目使用 Processing(并非出于选择)并且遇到了关于一次按下多个键的问题。在 keyPressed() 函数中,我有多个条件,每个都将一个键映射到一个 Action 。这一切
目前我正在使用 jQuery,尤其是该函数 keypress() 这个函数可以告诉我很多关于按下哪个键、在哪里以及何时按下的信息。但什么时候是我的问题:所以这段代码... $(document).ke
我是 JavaScript 新手,在使用“keypress”事件时遇到问题;我目前正在做一个小的跳跃脚本测试,“keydown”和“keyup”事件都起作用,但“keypress”不起作用(我尝试在事
我试图在每次字段更改时执行一个函数。首先,我使用一个简单的 textarea 和一个 div: $("#stuff").keypress(function () { $(
嘿伙计们,可能是一个简单的问题,但在网上找不到任何东西。 我有一个包含搜索结果的列表,我希望能够使用向上和向下键在列表中导航。 if (e.keyCode == 40) { //down
我当前正在通过 .click 事件添加输入,然后想要监听此输入上发生的任何按键。但是,附加内容在插入后不会触发任何事件(即模糊、按键、焦点)。有没有人有什么建议?提前致谢! $("#recipient
我想知道是否可以在表单级别当表单中有控件时处理 KeyPress 事件。 当窗体上没有控件时我可以实现这一点,但是当我添加一些东西时,比如按钮,窗体失去焦点并且我无法将其返回,即使使用 Me.Focu
情况:表单有一个文本框,用户必须在其中键入一些文本。此文本框有一个 KeyPress 事件,在该事件中,窗体的文本属性更改为用户在每次击键时键入的文本。 这是文本框按键事件的代码: private
我正在开发一个应用程序并卡住了。我有一个普通的简单按钮。我想要做的是,如果我单击此按钮,它的行为就像您在软键盘上按空格键一样。 我该怎么做。一定有办法,因为您可以开发软键盘。 所以重复 xP 如果我按
在这个页面上: https://subnetipv4.com/ 如果您单击“IP 地址”列中的任何输入框,然后按“.”或“/”键(句点或斜杠),它会跳转到下一个输入框。 或者至少,它在桌面浏览器上是这
这段代码构建正确,一切似乎都有效,但 key 什么也没做。我认为要么是 Action 监听器,要么是椭圆没有更新。我正在尝试通过初学者 java 游戏编程。我确信这很容易,但我没有捕获它。如果这有所作
我在 jTable 中有一系列文本框和组合框。我使用框中的输入来过滤 JPQL 查询的结果,这些结果显示在 jTable 上。现在,想法是使该过程自动化,以便每次用户在框中键入一个字符时,应用程序都会
我是一名优秀的程序员,十分优秀!