我如何使用Jquery将乘数添加到预定义数字?

时间:2019-02-11 11:38:24

标签: jquery html

我正在尝试使用下拉菜单将乘数应用于预定数字。这是HTML代码,但我在Jquery中经验不足。

ng serve

1 个答案:

答案 0 :(得分:1)

获取更改时选择的值,将其乘以数字并打印

wget https://files.pythonhosted.org/packages/e9/57/02bfe4c63659c03980639cdb0e45a0a423910ebc1f441b53ea573de83650/transformations-2019.1.1.tar.gz
sudo pip install transformations-2019.1.1.tar.gz  
cd transformations-2019.1.1/
sudo apt install dos2unix 
dos2unix transformations/*
cd ..
tar cf trans.tar transformations-2019.1.1/
pip install trans.tar 
var a = 10;
$('select').change(function() {
  a = a * $(this).val();
  console.log(a);
  a=10;
})