使用javascript从选择列表中显示值

时间:2016-03-24 20:14:46

标签: javascript

如何在consol.log中的选择列表中显示选项值而不选择它两次。现在它可以工作,但我需要点击两次才能显示它。

JS

my $a = '.' x 3 ~ 'x';
my $b = sprintf('%s', $a); # or just '...x', but not "$a"

say $a; #=> ..x
say $b; #=> ..x

$a.substr-rw( 0, 2 ) = '';
$b.substr-rw( 0, 2 ) = '';

say $a; #=> ..
say $b; #=> .x

JSFIDDLE

1 个答案:

答案 0 :(得分:2)

在此情况下,click事件似乎不合适。请改用change事件。

  .. .. onchange="formatClick()">

DEMO

另外,我建议你不要使用内联事件处理程序。使用如下的专用事件处理程序

document.getElementById("linkscreen").addEventListener("change", formatClick, false);

DEMO