-3

こんにちは、Java スクリプトを使用してテキスト ボックスを挿入し、ボタン シンボルを削除します。

ここで、そのテキスト ボックスにロジックを実装して、読み取ったテキスト データを保存する必要があります。どうすれば可能ですか?

testTypeNode.Text = testTypeNode.Text & "" & _
    " <img src=""../images/delete_16x.ico""" & _
    " style=""text-align:bottom; cursor:pointer;"" alt=""Delete TestType""" & _
    " title=""Delete TestType"" onclick=""javascript:if(confirm('Are you sure you want to delete? Any running tests will be aborted!'))" & _
    " {" & ClientScript.GetPostBackEventReference(btnDeleteTestType, "" & sequenceNode.Value.ToString & _
    WordSeparationChar & testTypeNode.Value.ToString & "") & ";};"" />" & _
    " <input type = ""text"" id = ""txtExperimentalStressdays"" name =""ExperimentalStressdays"" size = ""4"" title=""Please enter the Experimental Stressdays"" javascript:onfocusdown(/>"
4

1 に答える 1

0

わかった。ここで勝手な推測をします。
このコードをpage.htmlにコピーして、お探しのものがこのようなものかどうか教えてください。

<html>

<head>
    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(window).load(function(){
            $('#btncopy').on('click', function(){
                $('#txt2').val( $('#txt1').val() );
            });

            $('#btndelete').on('click', function(){
                $('#txt1').text('');
            });
        });
    </script>
</head>

<body>
<p>
    <div id="divform">
        <form class="myform">
            <textarea id="txt1">Here is the text the you want to copy.</textarea> 
        </form>
        <button id="btndelete">delete</button>
        <button id="btncopy">copy</button>
    </div>
</p>
<p>
    <div id="divclone">
        clones: 
        <form id="formclone">
            <textarea id="txt2">The text will be copied here.</textarea> 
        </form>
    </div>
</p>
</body>

</html>

編集

それをスクラッチします。私はちょうどあなたのコメントを見ました。

Amit Bhargava さん、ユーザーが入力したテキストをテキスト ボックスから読み取り、それをデータベースに保存したいと思います。助けてください?

于 2012-04-24T14:22:52.480 に答える