0
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$.noConflict();
jQuery(document).ready(function ($) {
$("#btnclick").click(function () {
$("div").load("https://drive.google.com/file/d/0B1ysrWPjNhlcblQtUmx3YTBpUG8/view?usp=sharing", function (responseTxt, StatusTxt, xhr) {
if (statusTxt == "success") {
alert("Your content load successfully !!");
}
if (statusTxt == "error") {
alert("Error: " + xhr.status + ":" + xhr.statusText);
}
});
});
});
</script>
</head>
<body>
<div>
<p>Click the button to insert text after the image.</p>
</div>
<button id="btnclick">Click Here TO Change The Content</button>
</body>
</html>

Googleドライブからtxtファイルを取得しています。それは共有されたグーグルリンクです。しかし、ロードされませんでした。テキスト ファイルは共有可能なリンクです。指定されたテキスト ファイルが機能しない場合は、同じテキスト ファイルまたは別のファイルを使用してください。リンクは:ここにリンクの説明を入力してください

4

0 に答える 0