gpt4 book ai didi

javascript - 使用 jquery 中的 onclick 事件更改 HTML 属性值

转载 作者:行者123 更新时间:2023-11-28 11:36:36 25 4
gpt4 key购买 nike

大家好,我只想问如何使用 jquery 中的事件更改 html 属性值。例如,我有一个充满信息的用户列表,并且有一个按钮更新和取消。用户信息是只读的,但是当用户单击更新按钮时,它将删除我的文本框中的只读属性。

这是我的简单代码:

  <div style="display: none" id="form_edit" class="k-content">
<table border="0">

<tr>
<td>
&nbsp;&nbsp;&nbsp;<label>P.O. #</label>
</td>
<td>
&nbsp;&nbsp;&nbsp;<input type="text" name="po" value="<?php echo $order_code; ?>" readonly="readonly" />
</td>
<td>
&nbsp;&nbsp;&nbsp;<label>SUPPLIER NAME</label>
</td>
<td>
&nbsp;&nbsp;&nbsp;<input type="text" name="suppliername" value="<?php echo $sname; ?>" readonly="readonly"" />
</td>
<td>
&nbsp;&nbsp;&nbsp;<label>Contact Person</label>
</td>
<td>
&nbsp;&nbsp;&nbsp;<input type="text" name="person" value="<?php echo $contactperson; ?>" readonly="readonly" />
</td>
</tr>

<tr>
<td>
&nbsp;&nbsp;&nbsp;<label>TIN #</label>
</td>
<td>
&nbsp;&nbsp;&nbsp;<input type="text" name="tin" value="<?php echo $tin; ?>" readonly="readonly" />
</td>
</tr>

<tr>
<td colspan="6" style="text-align: right">

<input type="button" value="UPDATE" class="k-button" id="submit_form"/>
<input type="button" value="HIDE" class="k-button" id="close_form"/>
</td>
</tr>


</table>
</div>

我的jquery

  $("a[name=edit_order]").click(function (e) {
$("#window_edit").data("kendoWindow").open();
e.preventDefault();
});

$("a[name=remove_order]").click(function (e) {
$("#window_remove").data("kendoWindow").open();
e.preventDefault();
});

/*here's the part that will remove the readonly attribute but how can i do that?
$("#update_supplier").click(function(){
$("#form_edit").show({
effect: "blind",
animation: 1000
});

$("#update_supplier").hide({
effect: "fade",
animation: 1000,
});
});

/*if close bring back again the readonly*/
$("#close_form").click(function(){
$("#form_edit").hide({
effect: "blind",
animation: 1000
});

$("#update_supplier").show({
effect: "fade",
animation: 1000,
});
});

最佳答案

试试这个代码:

$('#submit_form').on('click', function () {
$('input[name="suppliername"]').removeAttr('readonly');
});

检查我的编辑。

关于javascript - 使用 jquery 中的 onclick 事件更改 HTML 属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18459719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com