0

我正在构建一个带有购物车的网站,但您无法访问源代码。我可以编辑此页面上的文本,但无法触摸论坛字段或 html。

是否可以(使用 javascript 或 jquery)在页面加载时隐藏此付款页面上的单选按钮,以便客户无法一次编辑所有待处理订单的付款?我希望它执行以下操作: 1. 页面加载时隐藏两个单选按钮;2. 只选择所选订单的单选按钮

<form id="AccountSettingsForm" action="/AccountSettings.asp" method="POST" onsubmit="if (typeof(Update_Hidden_State_Fields) == 'function') Update_Hidden_State_Fields();"><input type="hidden" name="modwhat" value="change_c">
<input type="hidden" name="BillingID" value="">
<input type="hidden" name="ShipID" value="">
<input type="hidden" name="CCardID" value="">
<input type="hidden" name="OrderPlaced" value="4">
<input type="hidden" name="ReturnTo" value=""><br>
<table width="80%" border=0 align="center" cellpadding="5" cellspacing="1" bgcolor="#F7E26C">
<tr><td bgcolor="#FFFFCC">
<input type="radio" name="Apply_Payment_Method_To_All_Orders" value="" checked="checked" /><font color="#000000"><strong>Apply this payment method change to my Order#: 4 </strong></font><br />
<input type="radio" name="Apply_Payment_Method_To_All_Orders" value="Y"  />
<font color="#000000"><strong>Apply Payment Method To All Orders</strong></font></td></tr></table>

感谢您提供的任何帮助。

谢谢!

4

1 回答 1

0

使用将 css 属性设置为的AccountSettingsForm元素开始您的页面,然后displaynone

<input class="rdbBtn" type="radio" name="Apply_Payment_Method_To_All_Orders" value="" checked="checked" /><font color="#000000"><strong>Apply this payment method change to my Order#: 4 </strong></font><br />
<input  class="rdbBtn" type="radio" name="Apply_Payment_Method_To_All_Orders" value="Y"  />

$('.rdbBtn').on('load',function(){
    $('AccountSettingsForm').css('display', 'inline-block');
}
于 2013-10-24T23:19:32.473 回答