JavaScript Onclick 问题

发布于 2025-01-03 02:05:33 字数 671 浏览 0 评论 0原文

我无法让它发挥作用。将 JavaScript 直接放到 onclick 事件上效果很好,但这样不行

JavaScript

function checkid(objDivID) {
    if(this.id == 'id1') {
        alert('ID is Checked') 
    };
}

HTML

<tr id='id". $row['id'] ."' class='rrtr' onclick=\"checkid(this.id);\">
    <td class='name'>". $row['name'] ."</td>
    <td class='data'>". $row['TotalResp'] ."</td>
    <td class='data'>". $row['StaffCount'] ."</td>
    <td class='data'><b>". number_format($row['Perc'],0) ."</b></td>
</tr>

谢谢,H.

I can't get this to work. Dropping the JavaScript directly onto the onclick event works fine, but it doesn't this way.

JavaScript

function checkid(objDivID) {
    if(this.id == 'id1') {
        alert('ID is Checked') 
    };
}

HTML

<tr id='id". $row['id'] ."' class='rrtr' onclick=\"checkid(this.id);\">
    <td class='name'>". $row['name'] ."</td>
    <td class='data'>". $row['TotalResp'] ."</td>
    <td class='data'>". $row['StaffCount'] ."</td>
    <td class='data'><b>". number_format($row['Perc'],0) ."</b></td>
</tr>

Thanks, H.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

听闻余生 2025-01-10 02:05:34

您正在传递函数 this.id,但随后在函数中尝试再次引用该函数。这是行不通的。请改用参数名称。

function checkid(objDivID){
    if(objDivID == 'id1'){alert('ID is Checked')};
}

另外,HTML 中引用双引号的反斜杠可能并不真正存在,对吗?我猜你正在将该 HTML 打印为字符串。

You're passing the function this.id, but then in the function you try to reference that again. It won't work. Use the parameter name instead.

function checkid(objDivID){
    if(objDivID == 'id1'){alert('ID is Checked')};
}

Also the backslashes quoting the double-quotes in the HTML are probably not really there, right? You're printing that HTML as a string I presume.

为人所爱 2025-01-10 02:05:34

您可以通过多种方式解决它,一种是调用指定 this 的函数:

<tr id='id". $row['id'] ."' class='rrtr' onclick=\"checkid.call(this, this.id);\">

或者只使用传递的 id:

function checkid(objDivID){
    if(objDivID == 'id1'){alert('ID is Checked')};
}

You can solve it by several ways, one is calling function specifying this:

<tr id='id". $row['id'] ."' class='rrtr' onclick=\"checkid.call(this, this.id);\">

Or just use passed id:

function checkid(objDivID){
    if(objDivID == 'id1'){alert('ID is Checked')};
}
夜未央樱花落 2025-01-10 02:05:34

那是因为您在错误的范围内使用 this 。将行更改

if(this.id == 'id1'){alert('ID is Checked')};

if(objDivID == 'id1'){alert('ID is Checked')};

That's because you are using this in the wrong scope. Change the line

if(this.id == 'id1'){alert('ID is Checked')};

to

if(objDivID == 'id1'){alert('ID is Checked')};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文