$w.onReady(function () { // 当点击按钮时触发计算 $w('#btnCalculate').onClick(() => { let price = Number($w('#inputPrice').value); let down = Number($w('#inputDown').value); let years = Number($w('#inputYears').value); let rate = Number($w('#inputRate').value) / 100 / 12; let loanAmount = price - down; let months = years * 12; if (loanAmount <= 0 || years <= 0 || rate <= 0) { $w('#txtResult').text = "❌ 请检查输入"; return; } // 月供计算公式 let monthly = loanAmount * rate * Math.pow(1 + rate, months) / (Math.pow(1 + rate, months) - 1); // 显示结果(两位小数) $w('#txtResult').text = "每月还款: RM " + monthly.toFixed(2); }); });
top of page

公积金(EPF)第二季度30大持股名单




ree

ree


ree


ree

ree


ree


ree


ree


ree


ree


ree


ree

1.Malaysia Building Society Bhd65.39%

2.RHB Bank41.19%

3.Malaysian Resources Corp Bhd36.21%

4.Bermaz Auto Bhd20.63%

5.Globetronics Technology Bhd19.09%

6.Tenaga Nasional Bhd17.76%

7.Telekom Malaysia Bhd17.56%

8.Axiata Group Bhd17.13%

9.Sime Darby Plantation Berhad17.05%

10.IJM Corp Bhd16.45%

11.Yinson Holdings Bhd15.66%

12.CIMB Group Holdings Bhd15.42%

13.Sunway Real Estate Investment15.25%

14.Kuala Lumpur Kepong Bhd15.24%

15.Axis Real Estate Investment Bhd15.06%

16.Digi.com Bhd15.02%

17.Malaysia Airports Hldgs Bhd14.92%

18.Public Bank Bhd14.86%

19.Gamuda Bhd14.62%

20.Malayan Banking Bhd14.26%

21.Genting Plantations Bhd13.94%

22.Alliance Bank Malaysia Bhd13.82%

23.KPJ Healthcare Bhd13.67%

24.Panasonic Manufacturing Malaysia Bhd13.63%

25.Capitamalls Malaysia Trust Bhd13.63%

26.BIMB Hldgs Bhd13.42%

27.IOI Corporation Bhd13.16%

28.United Plantations Bhd13.16%

29.UMW Holdings Bhd13.15%

30.Petronas Gas Bhd12.91%




资料来源:https://www.kwsp.gov.my

留言


這篇文章不開放留言。請連絡網站負責人了解更多。

​联系我们

Infinity Shaw Remisier股票经纪人

010-301-4401

​Infinity Shaw

  • White Facebook Icon

Find us on Facebook

@InfinityShawRemisier

bottom of page
$w.onReady(function () { // 当点击按钮时触发计算 $w('#btnCalculate').onClick(() => { let price = Number($w('#inputPrice').value); let down = Number($w('#inputDown').value); let years = Number($w('#inputYears').value); let rate = Number($w('#inputRate').value) / 100 / 12; let loanAmount = price - down; let months = years * 12; if (loanAmount <= 0 || years <= 0 || rate <= 0) { $w('#txtResult').text = "❌ 请检查输入"; return; } // 月供计算公式 let monthly = loanAmount * rate * Math.pow(1 + rate, months) / (Math.pow(1 + rate, months) - 1); // 显示结果(两位小数) $w('#txtResult').text = "每月还款: RM " + monthly.toFixed(2); }); });