2つの異なるボタンがあります。どちらもクリックするとJQuery関数「ShowCommentBox」が実行されますが、2番目のボタンがクリックされると、「SHowCommentBox」に沿って追加のJQuery関数をロードします。追加の関数は画面に追加のオプションを許可します。
<input id="SubmitCommentsForBOQ" type="button" value="Comments" onclick="ShowCommentBox('<%: item.ItemCode %>'')" />
上は私も実行したい2番目のボタンです
$("#SubmitCommentsForTwo").click(function () {
$("#hiddenBox").show();
});
、これにより追加機能が表示されます...どうすればこれを実行できますか?
返信ありがとうございます
以下は元のJQueryです:ダイアログボックスをロードします
function ShowCommentBox(itemIdentifier, labourOrPlant, desc) {
id = itemIdentifier;
LabouringOrPlanting = labourOrPlant;
description = desc;
Function.DisplayBox(itemIdentifier);
$("#LabourOrPlantDialog").dialog({ modal: true });
}
と私の他のコード:
<div id="LabourOrPlantDialog" title="Comments" style="display:none;">
<table class="detailstable FadeOutOnEdit">
<tr>
<th>Item</th>
</tr>
<tr>
<td id="Item"></td>
</tr>
</table>
<br />
<textarea id="ExistingComments" type="text" runat="server" rows="7" cols="30"
maxlength="2000"> </textarea>
<input id="SubmitComment" type="button" value="Submit"
onclick="SubmitButton()" />
<br />
<div id="hiddenBox">
<input type="text" name="BoqTextBox" id="BoqTextBox" value="7.15" />
</div>
</div>