将 JavaScript 转换为 C#

本文关键字:转换 JavaScript | 更新日期: 2023-09-27 17:56:56

如何将这个JavaScript转换为C#?

<script>
  function zeroPad(num, places) {
    var zero = places - num.toString().length + 1;
    return Array(+(zero > 0 && zero)).join("0") + num;
  }
    var accum = 0;
    var pin = parseInt(form.mac.value.replace(/:/g, '').slice(-6), 16) % 12000;
    var p = pin;
    while (pin)
      accum = (((accum + (3 * (pin % 10))) | 0) + (((pin / 10) | 0) % 10)) | 0, pin = ((pin / 100) | 0);
    accum = ((10 - accum % 10) % 10);
    form.pin.value = (zeroPad(p, 7) + "" + accum);
  }
</script>

请详细解释一下这句话?

parseInt(form.mac.value.replace(/:/g, '').slice(-6), 16) % 12000;

将 JavaScript 转换为 C#

我相信

从头到尾的代码转换有点超出堆栈溢出的范围。如果您发布了不起作用的 C# 转换尝试并询问它出错的地方,我相信您会更快地回答您的第一个问题。

至于你的第二个问题:

parseInt(form.mac.value.replace(/:/g, '').slice(-6), 16) % 12000;

翻译为:

// Gets some mac address from some object outside the code you posted
var MACAddrString = form.mac.value;
// Delete the :'s between MAC address bytes
MACAddrString = MACAddrString.replace(/:/g, '');
// Take the last 3 bytes (6 hex digit symbols)
MACAddrString = MACAddrString.slice(-6);
// Parse the hex string to a number. Second argument indicates base 16.
var MACAddrInt = parseInt(MACAddrString, 16);
// Calculate the pin
var pin = MACAddrInt % 12000;

包装 javascript 函数,以便使用 c# 而不是转换/移植进行访问

你可以考虑使用侏罗纪来做到这一点。

从 .NET 调用 JavaScript 函数

 $(document).ready(function () { StartCountDown(); }); //start the countdown
function Decrement() {
    currentMinutes = Math.floor(secs / 60);
    currentSeconds = secs % 60;
    if (currentSeconds <= 9) currentSeconds = "0" + currentSeconds;
    secs--;
    document.getElementById("timerText").innerHTML = "Time Remaining " + currentMinutes + ":" + currentSeconds;
    if (secs !== -1) {
        setTimeout('Decrement()', 1000);
    }
    else {
        window.location.href = "default.aspx?timeout=1"
    }
}
function CheckIfAllQuestionAnswerHasBeenSubmitted() {
    var numItems = $('.tblOptions').length;
    var flagtocheckcount = 0;
    $(".tblOptions").each(function () {
        var groupname = $('input[type=radio]:first', this).attr('name');
        if (!$("input[name='" + groupname + "']:checked").val()) {
            $(this).parents(".tableclass").addClass("border");
            var tableid = $(this).closest('table [class^="tableclass"]').attr("id");
        }
        else {
            flagtocheckcount = flagtocheckcount + 1;
        }
    })