Liferayポータル6.1.1CEを使用しています。
私のliferayポートレットのjspページ-view.jsp
には、2つのテキストフィールドと2つのラジオボタン(ユーザーは1つしか選択できません)と送信ボタンを備えたフォームがあります。
ラジオボタンのいずれかをクリックすると、正常に機能しているスクリプト関数に制御が移ります。
次に、2つのテキストフィールドの値をスクリプト関数に渡します。たくさん試しましたが、無駄です。
どうすればこれを達成できますか?
助けて..よろしくお願いします。
<script>
function dif()
{
}
</script>
<form name="<portlet:namespace/>fm" method="post" action="<%=updateBookURL.toString()%>">
<table>
<tr>
<th>Leave Application</th>
</tr>
<tr>
<td>Employee <font color=red>*</font></td>
<td>
<input type="text" name="<portlet:namespace/>name"/>
<input type="text" name="<portlet:namespace/>eid" />
</tr>
<td>
Date <font color=red>*</font>
<input type="text" id="<portlet:namespace/>fd" name="<portlet:namespace/>
</td>
<td>
<input type="radio" name="<portlet:namespace/>f" id="f" value="1st half" onClick="f()"/>
First Half&=
<input type="radio" name="<portlet:namespace/>f" id="f" value="2ndhalf" onClick="f()"/>
Second Half
</td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="save data" size="100px"/></td>
</tr>
</table>
</form>