基本的なプロフィール ビューは から取得されindex.cs.asp?Process=ViewB_Profile
ます。
ユーザーが をクリックする<a href="index.cs.asp?Process=EditB_Profile">edit profile</a>
と、基本プロファイルを編集するためのダイアログ ボックスが開きます。
しかし、編集フォームで基本的なプロファイル ビュー データを置き換えたいと思います。
どうすればいいのですか、それ用のプラグインはありますか?
どうもありがとうございました!
編集しました!
<script type="text/javascript">
$(document).ready(function() {
$(function V_Basic_Profile() {
$.ajax({
type: "GET",
url: "content/profile/index.cs.asp?Process=ViewB_Profile",
success: function(data) {
$("#B_Profile").append(data);
},
error: function (data) {
$("#B_Profile").append('.');
}
});
});
$(function E_Basic_Profile() {
$.ajax({
type: "GET",
url: "content/profile/index.cs.asp?Process=ViewB_Profile",
success: function(data) {
$("#B_Profile").append(data);
},
error: function (data) {
$("#B_Profile").append('.');
}
});
});
});